zooba / vsts-python-tasks

Azure Pipelines tasks for Python
https://marketplace.visualstudio.com/items?itemName=stevedower.python
MIT License
8 stars 5 forks source link

bulk pip install fails for numpy + surprise #11

Open dciborow opened 6 years ago

dciborow commented 6 years ago

When I include both numpy and surprise in the packages when I install python, installing surprise will fail because numpy has not been installed. Perhaps having a toggle to install packages individually? (Or does pip have a flag for this?)

zooba commented 6 years ago

This sounds like something that could be fixed in pip, but you may just need to add some separate install commands. "python -m pip install ..." for each one should work.

However, pip is currently moving towards doing isolated build/installs, which means that surprise is likely to be even more broken soon. They may have to make their own fixes anyway.