conda&&pip

发布时间:2024年01月02日
一、常用命令
查看conda版本: conda --version

查看所有虚拟环境: conda env list
激活某一虚拟环境: conda activate  <name>
创建一个新的虚拟环境: conda create -n <name> python=x.x
在当前环境中安装软件包: conda install <package name>
					pip install <package name>  
				// 注意pip和conda用的可能不是同一个镜像源
					
显示镜像源: conda config --show
删除镜像源: conda config --remove channels '<channels name>'  // 注意单引号
删除所有镜像源: conda config --remove-key channels
二、conda换源问题
更换清华源(其余相同):
	conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
    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 --set show_channel_urls yes  # 设置查询时显示通道
中科大源:
    https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
    https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
    https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
上海交大源:
    https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/main/
    https://mirrors.sjtug.sjtu.edu.cn/anaconda/pkgs/free/
    https://mirrors.sjtug.sjtu.edu.cn/anaconda/cloud/conda-forge/
三、pip换源问题
一、临时换源
	清华源: pip install <package name> -i https://pypi.tuna.tsinghua.edu.cn/simple
	阿里源: pip install <package name> -i https://mirrors.aliyun.com/pypi/simple/
	腾讯源: pip install <package name> -i https://mirrors.cloud.tencent.com/pypi/simple
	豆瓣源: pip install <package name> -i https://pypi.douban.com/simple/
  
二、永久换源
	清华源: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
	阿里源: pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
	腾讯源: pip config set global.index-url https://mirrors.cloud.tencent.com/pypi/simple
	豆瓣源: pip config set global.index-url https://pypi.douban.com/simple/
	换回默认源: pip config unset global.index-url
如果电脑开了代理,pip方式可能会出现如下错误

pip install 报错

文章来源:https://blog.csdn.net/m0_57190127/article/details/135325611
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。