首页 > 其他分享 >在Anaconda虚拟环境中安装jupyternotebook

在Anaconda虚拟环境中安装jupyternotebook

时间:2023-03-02 20:44:33浏览次数:46  
标签:name ipykernel 虚拟环境 conda env Anaconda jupyternotebook your

  1. 使用conda env list命令查看已有的虚拟环境(首次只有base)
  2. 使用conda create -n your_env_name python=x.x创建虚拟环境
  3. 使用conda activate your_env_name进入新创建的虚拟环境
  4. 使用conda install ipykernel 安装必要插件
  5. 使用python -m ipykernel install --name Name 将环境添加到Jyputer中(Name是此环境显示在Jyputer中的名称,可自定义)

————————————————
参考链接:
https://blog.csdn.net/weixin_44109827/article/details/127195459

标签:name,ipykernel,虚拟环境,conda,env,Anaconda,jupyternotebook,your
From: https://www.cnblogs.com/icydengyw/p/17173396.html

相关文章