How to install scipy in Python3.5 virtual env | windows 10?

I have Anaconda (Python 3.6) on my Windows 10. This includes Scipy. I am also using virtual Python 3.5 env to support TensorFlow. Now the problem is that I cannot import Scipy while I am inside this virtual env.

I tried: pip install scipy (doesn't work) easy to install scipy (doesn't work) I also visited http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy to find a suitable package to install, but I didn't could figure out what combination of numpy + mkl and scipy can be loaded.

I would be grateful for your help. I know there are similar questions in this question already. But I couldn't find the answer to my problem in any way.

+3


source to share


2 answers


Once you enter your virtual environment for TensorFlow, try



conda install -c anaconda scipy=0.19.0

      

+2


source


Try building VirtualEnv with Python 3.5, as there is currently no TensorFlow version available for Python 3.6.

actions:

create Python 3.5 VirtualEnv:

conda create -n py35 python=3.5 anaconda

      



activate it

activate py35

      

install TensorFlow

conda install --channel https://conda.anaconda.org/conda-forge tensorflow

      

0


source







All Articles