Nijar Hossain
Nijar Hossain

Reputation: 129

Trouble installing SciPy on windows 7

I am newbie in Python. Before I tried to install this library, I installed NumPy. I don't know why this error occurred error when installing SciPy. Here is the image of the error:

enter image description here

Please give me a step by step description of the installation process of SciPy.

Upvotes: 2

Views: 2066

Answers (2)

Jaxian
Jaxian

Reputation: 1146

Lets start from the beginning. Try installing SciPy with pip via the Windows command line. The command is:

pip install scipy

You will need to make sure you have Python set in your system path. Take a look at this tutorial if you are confused about that: http://www.computerhope.com/issues/ch000549.htm

If the installation with pip doesn't work (which it never has for me with SciPy) then you can install it via whl file which you can grab from the University of California Irvine. Grab the file for your system architecture here: http://www.lfd.uci.edu/~gohlke/pythonlibs/

Then, in the command prompt, go to the directory where you downloaded the appropriate whl file and enter the following command:

pip install name_of_whl_file.whl

You should be good to go after that.

Upvotes: 2

Mike Müller
Mike Müller

Reputation: 85432

The easiest way to install SciPy on Windows is using Anaconda. This gives you a lot of popular scientific Python packages. All work together. It takes about 2GB on your hard drive because it installs many packages, many of which you won't use, but saves you a lot of time.

Alternatively, you can use Miniconda. This uses less space. It gives you a basic Python install with conda. Then you can install packages individually with:

conda install scipy

Upvotes: 4

Related Questions