一、Anaconda创建、删除
1. 创建虚拟环境
conda create -n your_env_name python=x.x
# 在创建环境的同时安装必要的包
conda create -n your_env_name numpy matplotlib python=x.x
# 在指定的虚拟环境中安装额外的包
conda install -n your_env_name package_name
# 克隆虚拟环境
conda create --name python32(新名字) --clone python321(老名字)
2. 激活虚拟环境
activate your_env_name
# 退出当前环境
deactivate your_env_name
OR
conda deactivate
3. 删除虚拟环境
conda remove -n your_env_name --all
# 删除虚拟环境中的某个包:
conda remove --name your_env_name package_name
二、conda常用指令
1. 查看conda版本
conda -V
2. 查看安装了哪些包
conda list
pip list
3. 查看当前存在哪些虚拟环境
conda env list
conda info -e
4. 检查更新当前conda
conda update conda
5. 设置国内镜像
conda下载东西时,默认的镜像源下载的速率很慢,修改conda的镜像源能够加快下载速度。一些设置镜像的操作如下:
(1).查看已添加的镜像
conda config --get channels
(2).换回默认镜像
conda config --remove-key channels
(3).添加清华镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
在添加镜像时选择其中任意一个即可
(4).设置搜索时显示频道地址
conda config --set show_channel_urls yes
(5).删除指定镜像
conda config --remove channels 地址
(6).确认镜像添加成功
conda config --get channels
pytorch安装检验
import torch
print(torch.__version__)
print(torch.cuda.is_available())
pip临时更换镜像源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple name
永久
## 配置中科大镜像
pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple
# 配置阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 配置腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 配置豆瓣源
pip config set global.index-url https://pypi.douban.com/simple/
# 查看当前镜像源
pip config list