Friday, June 10, 2016

steps to install numpy and scipy on windows environment for Python 3.x

PIP is provided by default in >Python 3.4 rohitgopidi
1. Open windows CLI (From start, go to RUN and type : CMD)
2. Go to the following URL to download numpy wheel : http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy and for scipy use http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy rohit gopidi
3. Before downloading numpy/scipy from the above URL, check which version is supported on your platform by using the following command in your CLI  :  print(pip.pep425tags.get_supported())
4. Download the appropriate wheel
5. Use the following command to install numpy:  pip install numpy-1.10.4+mkl-cp35-cp35m-win32.whl rohitgopidi
 for scipy : pip install scipy-0.17.0-cp35-none-win32.wl
6. Following message will be displayed
Installing collected packages: numpy
Successfully installed numpy-1.10.4
7. Done

No comments:

Post a Comment