python - Import Error: No module named numpy Anaconda -
i have similar question question. have 1 version of python 3.5 installed on windows 7 64-bit system. installed anaconda3.4 via official website - suggested in question. installation went fine when want import(i typing python command line )
import numpy import error:no module named numpy
then exit , type
pip install numpy
requirement satisfied (use --upgrade upgrade): numpy in d:\program fi les\anaconda3\lib\site-packages
i know super basic question, i'm still learning... thanks
you need install numpy
using pip3
install pip3
:
sudo apt-get install python-pip python3-pip
then install numpy
using pip3
sudo pip3 install -u numpy
Comments
Post a Comment