Problem installing SciPy

2

I'm having trouble installing scipy through pycharm and pip, I'm taking the following considerations when installing SciPy

1 - Compatible with python 3.6
2 - In pip pip the command "pip install scipy"
3 - All other scientific libraries that I tried to install gave an error (and I believe it is related to scipy )

The error is as follows:

  

1 - Failed building wheel for scipy
  2 - Failed cleaning build dir for scipy
  3 - Error code 1

In short, I need to use the "control 0.7.0" library for college to plot some graphics, but it is also giving error, would you like to know if this problem related to libraries are peculiarities of it or I'm letting something go? What should I take into consideration when installing a module? Can the problem be with the pip?

    
asked by anonymous 13.08.2017 / 19:55

1 answer

1

Good evening. You have not told which operating system you are using. If you are using Windows , please note that scipy can not be installed via pip because it does not have all the required libraries. If you are using windows try installing from the binaries on this page: link (Before installing the numpy link ). These binaries can be installed via pip and wheels . Save the files to a directory and do it in prompt :

pip install wheel

pip wheel --wheel-dir=/diretorio/aonde-salvou-binarios -r requirements.txt

pip install --no-index --find-links=/diretorio/aonde-salvou-binarios -r requirements.txt

If you are using mac or linux try updating the pip version:

python -m pip install --upgrade pip

Then install the packages

pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
    
14.08.2017 / 01:35