How to install scipy libraries in python?

0

I tried to install using the WinPython program, but when importing the library an error occurred:

"> > from scipy.optimize import curve_fit

Traceback (most recent call last):   File "", line 1, in     from scipy.optimize import curve_fit "> >> ImportError: No module named scipy.optimize"

    
asked by anonymous 21.07.2015 / 17:07

3 answers

1

I recommend using the Anaconda platform:

link

Anaconda comes with scientific 'base' packages, such as: matplotlib, pandas, scipy and numpy. All packages and environment are restricted to a single folder, making it easy to uninstall, and Anaconda also comes with Jupyter (former ipython notebook) and IDE Spyder.

    
09.11.2015 / 15:31
0

Try this: link

Comes with Scipy already installed

    
21.07.2015 / 17:37
0

From the command line of your operating system, if you have installed pip:

pip install scipy

More about pip at link

    
01.10.2015 / 19:08