As you know Scipy is one of the most used modules by the Python programmers for Data science and Machine Learning.
So if you have ever try to install Scipy using pip3 (3 for Python 3!), you will get an error like this.
As you can see, to install Scipy , simple pip3 install scipy will not work.
To install Scipy, you have to go to Unofficial Windows Binaries for Python Extension Packages link.
Then you have to find for Scipy. If you are using Chrome, you can use cntrl + F to search for scipy.
I m using python 3.5 (64-bit) so I have downloaded this package.
Make sure to install numpy before scipy otherwise this method wont work.
To install numpy, simple pip3 install numpy won't work.
You have to download numpy + mkl from the same link and download it, then install it using pip.
To install numpy and scipy wheel file you have to use pip install <path of the wheel file>
As you can see,pip has successfully installed Scipy.
Hope this helps :)
So if you have ever try to install Scipy using pip3 (3 for Python 3!), you will get an error like this.
As you can see, to install Scipy , simple pip3 install scipy will not work.
To install Scipy, you have to go to Unofficial Windows Binaries for Python Extension Packages link.
Then you have to find for Scipy. If you are using Chrome, you can use cntrl + F to search for scipy.
I m using python 3.5 (64-bit) so I have downloaded this package.
Make sure to install numpy before scipy otherwise this method wont work.
To install numpy, simple pip3 install numpy won't work.
You have to download numpy + mkl from the same link and download it, then install it using pip.
To install numpy and scipy wheel file you have to use pip install <path of the wheel file>
As you can see,pip has successfully installed Scipy.
Hope this helps :)
Comments
Post a Comment