欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 财经 > 金融 > conda操作总结

conda操作总结

2025/1/19 13:11:06 来源:https://blog.csdn.net/lf_78910jqk/article/details/140859254  浏览:    关键词:conda操作总结

创建新环境

conda create --name myenv
conda create --name myenv python=3.8
conda create --name myenv python=3.8 numpy pandas

激活环境

conda activate myenv

更换conda环境名字

  1. 激活当前环境。
  2. 克隆当前环境到一个新的名称。
  3. 删除旧环境(可选)。

以下是对应的命令:

conda activate old_env_name
conda create --name new_env_name --clone old_env_name
conda remove --name old_env_name --all

conda镜像源配置

查看现有的源

conda config --show channels

删除添加源,恢复默认源

conda config --remove-key channels

添加清华源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
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/r
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2

添加阿里源

conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/main/
conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/free/

删除镜像源

conda config --remove channels https://mirrors.aliyun.com/anaconda/pkgs/main/
conda config --remove channels https://mirrors.aliyun.com/anaconda/pkgs/free/

设置终端显示包从哪个channel下载,以及下载地址是什么

conda config --set show_channel_urls yes

pip安装镜像源

pip install -i https://mirrors.aliyun.com/pypi/simple/ some-package清华大学开源软件镜像站:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云开源镜像站:https://mirrors.aliyun.com/pypi/simple/
豆瓣:https://pypi.douban.com/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com