目录
python
首先确保conda已经正常安装
conda --version 或者conda -V
以下请将"myenv"替换成自己的命名!!!
1-查看虚拟环境目录
conda env list
2-创建虚拟环境命令
conda create -n myenv
或者 conda create --name myenv
3-激活虚拟环境命令
conda activate myenv
4-退出虚拟环境
conda deactivate
python
5-删除虚拟环境
conda env remove --name myenv
6-在虚拟环境中安装包
conda install --name myenv package_name
也可以先进入到该虚拟环境,再用pip安装。
7-更新虚拟环境中的包
conda update --name myenv package_name
8-在虚拟环境中卸载包
conda remove --name myenv package_name
python
9-克隆一个虚拟环境
conda create --name myclone --clone myenv
10-查看虚拟环境的包
conda list --name myenv
安装包可以激活虚拟环境之后使用pip install xxx 或者conda install xxx
11-添加环境到 jupyter notebook
首先下载
pip install jupyter --i https://pypi.tuna.tsinghua.edu.cn/simple
然后即可进行加载
python -m ipykernel install --user --name=myenv
python
去除内核
jupyter kernelspec remove myenv
1、切换到目标python环境,假设我的是叫"tf"
python
C:\Users\hello>activate tf
(tf) C:\Users\hello>
2、安装notebook内核包
python
(tf) C:\Users\hello>pip install ipykernel
3、将环境加入到notebook中
python
python -m ipykernel install --user --name pytorch --display-name pytorch
我的
python
(tf) C:\Users\hello>python -m ipykernel install --user --name tf --display-name tf-ipy
4、一定要在base环境中打开jupyter notebook
python
C:\Users\hello>jupyter notebook
在notebook界面切换python环境