anaconda常见语法
一、镜像
1.添加镜像channel
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
2.在输入下载命令后,conda会为我们选择一个源,并从中下载我们要的那个包。这个源可能是我们添加中的某一个,也可能系统默认的那些。我们希望在下载的时候,conda告诉我们当前下载是在用哪一个。
conda config --set show_channel_urls yes
3.删除镜像channel
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
4.删除所用镜像channels,恢复默认
conda config --remove-key channels
5.展示目前已有的镜像channel
conda config --show channels
注意: 好用的镜像,但是只有下载每一个包的时候用-i使用:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名=版本
二、虚拟环境
1.创建虚拟环境并命名为:pytorch38
conda create --name pytorch38
2.激活(或者叫做进入、切换)这个虚拟环境
conda activate pytorch38
conda deactivate pytorch38
#上面这个会直接停用当前的虚拟环境,然后进入那个最一般,原始的环境。
3.删除这个环境
conda remove --name pytorch-lightnin --all
4.查看现在已经安装的所有环境。
conda env list
三、其他命令
1.更新anaconda版本
conda update -n base conda
2.查看某个包的版本的命令
conda list 包名
3.查看某个包有哪些版本,从而选择安装一个
conda search 包名