We have set up a local python package server for your internal python packages and serve also some packages which are hard to compile on windows. As numpy is one of these packages, there exist now two versions of numpy on our server:
- numpy-1.13.0-cp35-none-win32.whl
- numpy-1.13.0+mkl-cp35-cp35m-win32.whl
How can I instruct pip to install a specific version of these two? Running pip install numpy
will pick the package with "mkl", but for some projects I want numpy without "mkl".
Edit:
The only way which works is the full URL to the package, which seems a little bit verbose.