如何安装python包以在jupyter笔记本内核中使用?

时间:2016-07-28 21:32:01

标签: python jupyter-notebook

我使用以下命令安装了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。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

conda create -n py35 python=3.5 ipykernel
source activate py35
pip install numpy