假设在本地已有一个conda
环境名称为gee
,现在需要将其对应到Jupyter Notebook
中,在复制代码时将所有gee
替换为自己的虚拟环境名称。
第一步:激活虚拟环境
- 打开
Anaconda Prompt(anaconda3)
(base) C:\Users\wzj>activate gee
(gee) C:\Users\wzj>
第二步:安装ipykernel
(gee) C:\Users\wzj>conda install -n gee ipykernel
第三步:安装内核
(gee) C:\Users\wzj>python -m ipykernel install --user --name gee --display-name "gee"
第四步:报错解决
- 执行完上面的代码后,在
Jupyter
中应该已经可以看到名为gee
的内核了,但是当执行代码时可能会报错:ImportError: IProgress not found. Please update jupyter and ipywidgets.
,因此还需要再安装ipywidgets
包。
>>> pip3 install ipywidgets
或者直接在Jupyter
中加上感叹号直接运行安装。
In[1]: !pip3 install ipywidgets
到此为止就大功告成啦!