IT评测·应用市场-qidao123.com技术社区
标题:
conda操作总结,pip操作总结,python包安装
[打印本页]
作者:
南七星之家
时间:
2024-8-12 02:17
标题:
conda操作总结,pip操作总结,python包安装
创建新情况
conda create --name myenv
conda create --name myenv python=3.8
conda create --name myenv python=3.8 numpy pandas
复制代码
激活情况
conda activate myenv
复制代码
更换conda情况名字
激活当前情况。
克隆当前情况到一个新的名称。
删除旧情况(可选)。
以下是对应的命令:
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
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
欢迎光临 IT评测·应用市场-qidao123.com技术社区 (https://dis.qidao123.com/)
Powered by Discuz! X3.4