Skip to content

Commit 8803d49

Browse files
committed
Install IPython from defaults channel
IPython 7 is already in the defaults channel so there is no need to use conda-forge. This reverts a part of c949b36
1 parent 8510f52 commit 8803d49

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/convenience.jl

+2-5
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,12 @@ NOT_INSTALLABLE = (false, "", Nothing)
8383

8484
function condajl_installation(package)
8585
if PyCall.conda && package in conda_packages
86-
args = `install -y -c conda-forge $package`
8786
message = """
8887
Installing $package via Conda.jl
8988
Execute?:
90-
Conda.runconda($args)
89+
Conda.add($package)
9190
"""
92-
install = () -> Conda.runconda(args)
93-
# `Conda.add_channel` overwrites user's ~/.condarc so let's
94-
# not use it.
91+
install = () -> Conda.add(package)
9592
return (true, message, install)
9693
end
9794
return NOT_INSTALLABLE

0 commit comments

Comments
 (0)