其他分享
首页 > 其他分享> > conda创建管理虚拟环境

conda创建管理虚拟环境

作者:互联网

记录一下自己常用的conda指令,省得到时候到处找
1.创建一个虚拟环境,指定python版本
下面展示一些 内联代码片

conda create -n xx python=3.x

2.激活和退出虚拟环境

conda activate xx
conda deactivate

3.查看已经创造的虚拟环境

conda info --envs
conda env list

4.检查更新当前虚拟环境

conda update conda
conda update xx

5.删除虚拟环境中的包和删除整个虚拟环境

conda remove -n py36 xx
conda remove -n py36 --all

6.在虚拟环境中运行Jupyter Notebook解决办法
安装Jupyter Kernel:ipykernel

pip install ipykernel

连接虚拟环境到Jupyter Kernel

python -m ipykernel install --user --name 环境名

7.Anaconda虚拟环境报错: ImportError: IProgress not found. Please update jupyter and ipywidgets.

# 1.卸载jupyter
pip uninstall jupyter
# 2.安装
pip install jupyter
# 3.卸载ipywidgets
pip uninstall ipywidgets
# 4.安装
pip install ipywidgets
# 5.还是不行再关联
jupyter nbextension enable --py widgetsnbextension

8.导出与加载虚拟环境

#导出环境将包保存为 YAML,输出环境中的所有包的名称(包括 Python 版本)
conda env export > environment.yaml
#加载环境
conda env create -f environment.yaml

标签:jupyter,--,创建,虚拟环境,conda,pip,ipywidgets
来源: https://blog.csdn.net/weixin_49221232/article/details/120373597