常用映象源

Mactor發表於2024-07-10

最近在一臺受限的Ubuntu上配置和使用開源專案。由於該伺服器暫時無法訪問牆外網站,故找了很多映象網站作為替代

  1. pip(pypi) 清華映象源
    https://pypi.tuna.tsinghua.edu.cn/simple
    使用方法:
    終端命令
pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple
  1. Anaconda 清華映象源
    https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
    使用方法(Linux)
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2024.06-1-Linux-x86_64.sh

如果wget not found則先安裝

sudo apt install wget

(參考[[https://www.cnblogs.com/haoliyou/p/17666790.html|此篇]])

  1. GitHub 映象源
    https://gitclone.com
    使用方法:在映象網站找到對應程式碼倉庫,複製地址
git clone 映象地址
  1. HuggingFace 映象

原址常見錯誤: connectionerror: HTTPSConnectionPool(host='huggingface.co', port=443): Read timed out.
映象地址 https://hf-mirror.com
換源方法(對於一些國外的開源專案無需手動更改程式碼):

pip install -U huggingface_hub
export HF_ENDPOINT=https://hf-mirror.com

(更多有關HuggingFace模型下載內容,可以參考[[https://zhuanlan.zhihu.com/p/663712983|這篇]])

相關文章