问题描述
使用conda激活环境(已安装Anaconda
):conda activate MyWp37
运行jupyter notebook
/ jupyter lab
后无法使用当下环境
原因
conda 环境中需要安装扩展nb_conda
、jupyter_contrib_nbextensions
和jupyter_nbextensions_configurator
并进对jupyter
进行相应的配置。
解决
- 安装
nb_conda
、jupyter_contrib_nbextensions
和jupyter_nbextensions_configurator
:conda install nb_conda
pip install jupyter_contrib_nbextensions
pip install jupyter_nbextensions_configurator
-
jupyter
配置:jupyter contrib nbextension install --user --skip-running-check
备注
若pip下载过慢,可以在后面加上-i
关键字,更换为国内源。例:pip install jupyter_nbextensions_configurator -i https://pypi.tuna.tsinghua.edu.cn/simple
也可直接设置conda默认使用源为国内源。