Skip to content Skip to sidebar Skip to footer

Install Scipy Package Via Pycharm In Windows 10 64 Bit - Python 3.5

In PyCharm a 'Python-IDE' in my window 10 64 bit, I want to install 'Scipy'. First of all in {Pycharm -> File -> Settings -> interpreter} I chose C:\Users\XXXXX\AppData\Lo

Solution 1:

It sounds like you have an installation of numpy that was not compiled with LAPACK.

You can get a pre-compiled version from Christopher Gohkle's "Python Extension Packages For Windows" page, under numpy-1.11.2+mkl-cp35-cp35m-win32.whl. Then just run

pip install --user numpy-1.11.2+mkl-cp35-cp35m-win32.whl--upgrade

You should then try installing scipy again

Post a Comment for "Install Scipy Package Via Pycharm In Windows 10 64 Bit - Python 3.5"