python虚拟环境切换
作者:互联网
python虚拟环境切换
jupyter notebook 中切换虚拟环境
设置虚拟环境切换
在各个环境中安装ipykernel
pip install ipykernel
激活环境,在各个环境中安装服务
python3 -m ipykernel install --user --name=testenv
进入jupyter改变服务
查看环境服务
jupyter kernelspec list
删除环境服务
jupyter kernelspec remove kernelname
vscode中切换虚拟环境
virtualenvwrapper环境需要单独设置,vscode可以自动识别conda环境
- 在首选项-->设置-->用户设置-->扩展-->Python
在settings.json中编辑 添加
{ "python.venvPath": "/home/user/Envs", "python.venvFolders": [ "pyecharts_1_0", "testenv" ] }
python.venvPath 虚拟环境路径
虚拟环境目录切换虚拟环境
标签:jupyter,ipykernel,python,环境,虚拟环境,切换 来源: https://www.cnblogs.com/yu212223/p/11947465.html