如何使用conda安装jupyter notebook以及如何使用已经搭建好的虚拟环境

一、conda 安装jupyter notebook

  • 在开菜单栏使用cmd,打开命令窗口
  • 创建一个conda环境,并指定python版本,例如conda create -n env_name python=3.8
  • 激活环境,执行conda activate env_name
  • 在环境中安装jupyter notebook,执行conda install jupyter notebook
  • 启动jupyter notebook,执行jupyter notebook

二、jupyter 使用conda搭建好的虚拟环境 

  • 在命令窗口打开conda构建好的虚拟环境  conda activate env_name
  • 在该环境下执行 conda install ipykernel
  • 添加虚拟环境到 jupyter中 python -m ipykernel install --user --name env_name --display-name jupyter_env_name 

注释:

(1)env_name  搭建环境的名字

(2)jupyter_env_name  搭建的环境在jupyter中显示的名字

你可能感兴趣的:(conda,jupyter,python)