当前位置:   article > 正文

jupyter 重新下载与安装教程_jupyter下载安装

jupyter下载安装

jupyter 重新下载与安装教程

conda 卸载

要卸载 Jupyter,首先需要确定你是通过哪种方式安装的。由于你提到不确定是通过 conda 还是本地的 Python 安装的,我们可以分别检查并尝试卸载。

conda list jupyter
  • 1

这里选择你所有的jupyter 相关的包

conda remove -n coder jupyter_client jupyter_core
# coder 是我的虚拟环境名字
conda list -n coder
  • 1
  • 2
  • 3

pip 卸载

pip3 show jupyter

pip uninstall jupyter
  • 1
  • 2
  • 3

重新安装

这里选择在conda下进行安装

conda create -n rob python=3.6

conda activate rob

conda install jupyter

jupyter notebook
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

more jupyter 中没有找到相关环境

在 Jupyter Notebook 界面中没有看到你的 rob 环境可能是因为在该环境中没有安装 Jupyter Notebook 相关的内核。为了在 Jupyter Notebook 中使用不同的 Python 环境,你需要为那个环境安装一个内核。

conda install ipykernel
python -m ipykernel install --user --name rob --display-name "Python (rob)"
  • 1
  • 2
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/943647
推荐阅读
相关标签
  

闽ICP备14008679号