Open jwscook opened 4 years ago
I'm not 100% sure: is pip
an executable? Do you need to call python pip
instead?
A better solution might be https://github.com/JuliaPy/Conda.jl/pull/171: maybe chime in there, or see if you can reuse some of that PR?
(also, you should be able to install scipy via Conda).
Pip is an executable, but I believe you can also call it via python pip -m ...
. Conda can install all of the dependencies that have been packaged e.g. scipy, but I couldn't get it to install https://github.com/ScottishCovidResponse/data_pipeline_api@0.7.0
. I'll try over at Conda.jl.
What I meant is that I think pip is a Python script: on Unix you can just set the executable permission and use a shebang, but this doesn't work in Windows (only binaries and batch files are directly executable).
I tried downloading and installing via get-pip.py
and it produced a file called Pip.exe
so I assume it's literally an executable rather than a file masquerading as one. I'm a bit confused why it's possible to call it as a python module though python -m pip ...
.
Hi Devs,
I'm coming up against a problem running my tests on Appveyor. See this CI job as an example failure.
I've got a project with a few python dependencies that are both packaged e.g. scipy and non-packaged (a repo on github). To install thems in the build.jl I use commands like:
which works well on travis but on Appveyor errors out because it can't find
pip
I've thought about using
Conda
to installhttps://github.com/ScottishCovidResponse/data_pipeline_api@0.7.0
in isolation ofpip
but can't make that work either.Any pointers for putting pip in
C:\Users\appveyor\.julia\conda\3\Library\bin\
?Thanks, James