We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdc2dc4 commit 09e0030Copy full SHA for 09e0030
1 file changed
src/convenience.jl
@@ -112,10 +112,11 @@ end
112
113
function pip_installation(package)
114
if package in (conda_packages..., "ipython-dev", "julia")
115
+ args = package
116
if package == "ipython-dev"
- package = "git+git://github.com/ipython/ipython#egg=ipython"
117
+ args = `--upgrade "git+git://github.com/ipython/ipython#egg=ipython"`
118
end
- command = `$(PyCall.pyprogramname) -m pip install $package`
119
+ command = `$(PyCall.pyprogramname) -m pip install $args`
120
message = """
121
Installing $package for $(PyCall.pyprogramname)
122
Execute?:
0 commit comments