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/
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值