我使用以下命令安装了Python 3内核
conda create -n py35 python=3.5 ipykernel
source activate py35
python -m ipykernel install –user –name py35 –display-name “Python 3”
当我在python 3笔记本中导入numpy时,我得到ImportError: No module named numpy
。我该如何解决这个问题?
答案 0 :(得分:0)
conda create -n py35 python=3.5 ipykernel
source activate py35
pip install numpy