I have a working setup for Jupyter Notebooks (numpy, scipy, matplotlib, etc.) on workstation 1. I went to set up a second workstation (bash shell on windows 10):
- Installed Python 3.4.4 from www.python.org, windows 64 bit.
- Upgraded pip: $ python -m pip install --upgrade pip, now its (v 9.0.1)
- Installed numpy with pip
- Installed scipy with pip $ pip install scipy
Requirement already satisfied: scipy in c:\python34\lib\site-packages
Requirement already satisfied: numpy>=1.8.2 in c:\python34\lib\site-packages (from scipy)
See image. When I try to import scipy in ipython I get this '_ccallback_c' error.
I've searched google and this site for importing scipy and this error, but nothing has shown up. Thanks for your help.
pip3 install scipy
- Oqhaxpip install scipy
will never (except you got a crazily complete system; i highly doubt that: BLAS, LAPACK, Fortran-compiler and co.) work! So double-check what happened when installing scipy. Look also here on SO forwindows install scipy
questions which will recommend Gohlke's binaries OR the anaconda-distribution (which i recommend). It's also the official recommendation of scipy-devs (on windows)! - saschapip install numpy
didn't install the Numpy+MKL version which is needed. @sascha is right. - Jarad