python 國內映象加速

2021-10-03 13:37:47 字數 1905 閱讀 1021

經常在使用python的時候需要安裝各種模組,而pip是很強大的模組安裝工具

但是由於國外官方預設pip訪問速度慢,經常被牆,導致無法安裝,所以我們最好是將自己使用的pip源更換一下,這樣就能解決被牆導致的裝不上庫的煩惱

# 檢視已經安裝軟體列表

$ pip freeze

# 檢視當前配置

$ python -m site

user_baseuser_site其實就是使用者自定義的啟用python指令碼和依賴安裝包的基礎路徑

//阿里

//清華

//豆瓣

//華中理工大學

//山東理工大學

//中國科學技術大學

國內使用得比較多並且速度比較快的是阿里的pip源或者清華大學,清華大學的是官網pypi的映象

pip的時候加引數-i

pip install -i  gevent
修改~/.pip/pip.conf(沒有就自己建立), 增加或者修改index-url至源

[global]

index-url =

trusted-host = pypi.tuna.tsinghua.edu.cn

disable-pip-version-check = true

mkdir -p ~/.pip

echo -e '[global]\ntrusted-host = pypi.douban.com\nindex-url = ******' > ~/.pip/pip.conf

直接在user目錄中建立乙個pip目錄,如:c:\users\xx\pip

新建檔案pip.ini內容

[global]

index-url =

trusted-host = pypi.tuna.tsinghua.edu.cn

disable-pip-version-check = true

timeout = 120

或者使用豆瓣源

[global]

index-url = ******

trusted-host = pypi.douban.com

disable-pip-version-check = true

timeout = 120

mkdir -p ~/.pip

echo -e '[global]\ntrusted-host = pypi.douban.com\nindex-url = ******' > ~/.pip/pip.conf

直接在user目錄中建立乙個pip目錄,如:c:\users\xx\pip

新建檔案pip.ini內容

[global]

index-url = ******

trusted-host = pypi.douban.com

disable-pip-version-check = true

timeout = 120

或者

[global]

index-url =

trusted-host = pypi.tuna.tsinghua.edu.cn

disable-pip-version-check = true

timeout = 120

Go 國內加速映象

go 生態系統中有著許多中國 gopher 們無法獲取的模組,比如最著名的golang.org x 並且在中國大陸從 github 獲取模組的速度也有點慢,因此設定 cdn 加速 就很有必要了 在 linux 或 macos 上面,需要執行下面命令 或者,可以把以下命令寫到 bashrc 或 bas...

Docker docker國內映象加速

建立或修改 etc docker daemon.json 檔案,修改為如下形式 方法一 docker中國區官方映象 網易 ustc 中國科技大學 方法二 阿里雲容器 生成自己的加速位址 登入 點選 建立我的容器映象 得到專屬加速位址。載入重啟docker sudo systemctl daemon ...

Docker映象加速,設定國內源

修改 etc docker daemon.json檔案,檔案的格式為 多源配置 建立或修改 etc docker daemon.json檔案,修改為如下形式 重啟docker服務使配置生效 systemctl daemon reload systemctl restart docker 阿里雲加速配...