conda常用操作和配置镜像源

Posted 江小皮不皮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了conda常用操作和配置镜像源相关的知识,希望对你有一定的参考价值。

conda常用操作和配置镜像源

pip

临时使用国内镜像源

下载某一个包的时候,加上如下后缀就行

pip install xxx 
#中科大源、清华源、豆瓣源
-i https://pypi.mirrors.ustc.edu.cn/simple/
-i https://pypi.tuna.tsinghua.edu.cn/simple
-i https//pypi.doubanio.com/simple/ 

永久使用国内镜像源

1、豆瓣源

pip config set global.index-url https//pypi.doubanio.com/simple/ 

2、清华源

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

3、中科大源

pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple

4、配置成功会出现:

#保存路径
C:\\Users\\Administrator\\AppData\\Roaming\\pip\\pip.ini

打开保存路径的文件:

5、删除镜像源

直接将pip.ini文件删除即可

conda

1.查看默认源

conda config --show-sources

2.删除一个默认源

conda config --remove channels https://pypi.tuna.tsinghua.edu.cn/simple

3.增加一个默认源

# 清华源
conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple

# 阿里源
conda config --add channels https://mirrors.aliyun.com/pypi/simple/

#豆瓣源
conda config --add channels https://pypi.doubanio.com/simple/ 

#中科大源
conda config --add channels https://pypi.mirrors.ustc.edu.cn/simple/

4.设置搜索时显示通道地址

conda config --set show_channel_urls yes

5.文件所在位置(进行增删)

也可以通过打开文件来增加删除镜像源


conda常用命令

1、创建虚拟环境

conda  create  --name  env_name python=3.7 

遇到报错:

UnavailableInvalidChannel: HTTP 404 NOT FOUND for channel simple

先删除镜像

conda config --remove-key channels

添加镜像

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/msys2/

显示添加的镜像

conda config --show channels

2、激活虚拟环境

conda activate env_name

3、退出当前环境

conda deactivate

4、删除环境

conda remove  --name  env_name  --all

5、复制虚拟环境

conda  create  --name  new_env_name  --clone  old_env_name

6、查看当前所有环境

conda  info  -e

7、查看当前虚拟环境下的所有安装包

conda list  
conda list  -n  env_name


8、导出/创建虚拟环境

conda env export > environment.yml # 导出当前虚拟环境
conda env create -f environment.yml # 创建保存的虚拟环境

9、批量导出虚拟环境中的所有组件

conda list -e > requirements.txt  # 导出
conda install --yes --file requirements.txt  # 安装

10、升级

conda  update  conda
conda  update  anaconda

11、卸载

rm  -rf  anaconda

conda配置清华源

参考技术A Anaconda 镜像使用

或者可以通过修改用户目录下的 .condarc 文件:
(Windows 用户无法直接创建名为 .condarc 的文件,可先执行 conda config --set show_channel_urls yes 生成该文件之后再修改。)

即可添加 Anaconda Python 免费仓库。

运行 conda clean -i 清除索引缓存,保证用的是镜像站提供的索引。

以上是关于conda常用操作和配置镜像源的主要内容,如果未能解决你的问题,请参考以下文章

conda换源,切换国内源

python pip anaconda conda 切换国内源(清华镜像)

常用指令(conda,docker,linux等)合集

Windows 和 Ubuntu 下通过国内镜像源使用 conda 进行软件包下载

pip和conda的源管理相关操作

python入门conda的使用,创建修改删除虚拟环境,以及常用命令,配置镜像