编程语言
首页 > 编程语言> > python虚拟环境切换

python虚拟环境切换

作者:互联网

python虚拟环境切换

jupyter notebook 中切换虚拟环境

设置虚拟环境切换

  1. 在各个环境中安装ipykernel

    pip install ipykernel
  2. 激活环境,在各个环境中安装服务

    python3 -m ipykernel install --user --name=testenv
  3. 进入jupyter改变服务

python虚拟环境1

查看环境服务

jupyter kernelspec list

删除环境服务

jupyter kernelspec remove kernelname

vscode中切换虚拟环境

virtualenvwrapper环境需要单独设置,vscode可以自动识别conda环境

  1. 在首选项-->设置-->用户设置-->扩展-->Python
  2. 在settings.json中编辑 添加

    {
        "python.venvPath": "/home/user/Envs",
        "python.venvFolders": [
            "pyecharts_1_0",
            "testenv"
            ]
     }

    python.venvPath 虚拟环境路径
    虚拟环境目录

  3. 切换虚拟环境

python虚拟环境2

标签:jupyter,ipykernel,python,环境,虚拟环境,切换
来源: https://www.cnblogs.com/yu212223/p/11947465.html