-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip not installed along with Conda / PyCall #25
Comments
I'm not 100% sure: is A better solution might be JuliaPy/Conda.jl#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 |
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 |
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
The text was updated successfully, but these errors were encountered: