Skip to content Skip to sidebar Skip to footer

How To Install Scipy In Python3.5 Virtual Env | Windows 10?

I have Anaconda (Python 3.6) in my Windows 10. This includes Scipy. I am also using a virtual Python 3.5 env to support TensorFlow. Now, the problem is that I cannot import Scipy w

Solution 1:

Once you're inside your virtual environment for TensorFlow, try

conda install -c anaconda scipy=0.19.0

Solution 2:

Try to create VirtualEnv with Python 3.5 as currently there is NO TensorFlow release for Python 3.6.

steps:

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

Post a Comment for "How To Install Scipy In Python3.5 Virtual Env | Windows 10?"