編碼的世界 / 優質文選 / 女人

Ubuntu下pip, conda更改清華鏡像源


2022年7月30日
-   

Ubuntu下pip, conda更改清華鏡像源
轉載: https://blog.csdn.net/familyshizhouna/article/details/68490068 pip: 臨時使用: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package 設為默認: 修改 ~/.config/pip/pip.conf (沒有就創建一個)
mkdir ~/.pip
vim .pip/pip.conf

修改 index-url至tuna,例如
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

pip 和 pip3 並存時,只需修改 ~/.pip/pip.conf conda: conda源在國內只有清華鏡像有 ,修改源只需如下命令:
conda config add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config set show_channel_urls yes

換回默認源: conda config remove-key channels 中科大鏡像: https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ 上海可達鏡像: https://mirrors.geekpie.club/anaconda/pkgs/free/ 更多: https://zhuanlan.zhihu.com/p/62899936
pip 安裝本地包 pip install D:XXX.whl
conda 安裝本地包 conda install use-local D:XXX.tar.bz2

熱門文章