Trouble Creating A Conda Enviroment With Numpy 10.1.2
I'm having trouble getting numpy working with conda + python 2.7. It works fine with python 3, but when I try below I get 'cannot import name scalarmath'. conda create -n test nump
Solution 1:
You need to activate your environment with source activate test
. This works for me on OS X 10.9.:
conda create -n test numpy python=2.7 --no-default-packages
source activate test
python -c 'import numpy'
Post a Comment for "Trouble Creating A Conda Enviroment With Numpy 10.1.2"