当前位置:   article > 正文

conda操作总结,pip操作总结,python包安装

conda操作总结,pip操作总结,python包安装

创建新环境

conda create --name myenv
conda create --name myenv python=3.8
conda create --name myenv python=3.8 numpy pandas
  • 1
  • 2
  • 3

激活环境

conda activate myenv
  • 1

更换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
  • 1
  • 2
  • 3

conda镜像源配置

查看现有的源

conda config --show channels
  • 1

删除添加源,恢复默认源

conda config --remove-key channels
  • 1

添加清华源

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

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

添加阿里源

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

删除镜像源

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

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

conda config --set show_channel_urls yes
  • 1

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/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

window安装

window更适合用pip

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 -i https://pypi.tuna.tsinghua.edu.cn/simple

pip install transformers=4.24.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

#中科大源、清华源、豆瓣源、阿里源
-i https://pypi.mirrors.ustc.edu.cn/simple/
-i https://pypi.tuna.tsinghua.edu.cn/simple
-i https//pypi.doubanio.com/simple/
-i https://mirrors.aliyun.com/pypi/simple/ some-package

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/937051
推荐阅读
相关标签
  

闽ICP备14008679号