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

发布于:2024-08-08 ⋅ 阅读:(218) ⋅ 点赞:(0)

创建新环境

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/

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


网站公告

今日签到

点亮在社区的每一天
去签到