其他分享
首页 > 其他分享> > 【已解决】在conda环境中运行Jupyter lab/ Jupyter notebook 无法加载该环境

【已解决】在conda环境中运行Jupyter lab/ Jupyter notebook 无法加载该环境

作者:互联网

问题描述

使用conda激活环境(已安装Anaconda):
conda activate MyWp37

运行jupyter notebook/ jupyter lab后无法使用当下环境

原因

conda 环境中需要安装扩展nb_condajupyter_contrib_nbextensionsjupyter_nbextensions_configurator并进对jupyter进行相应的配置。

解决

  1. 安装nb_condajupyter_contrib_nbextensionsjupyter_nbextensions_configurator:
    conda install nb_conda
    pip install jupyter_contrib_nbextensions
    pip install jupyter_nbextensions_configurator
  2. 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默认使用源为国内源。

标签:jupyter,环境中运行,lab,contrib,conda,install,pip,Jupyter,nbextensions
来源: https://blog.csdn.net/weixin_46315829/article/details/115437747