Rust使用國內映象安裝依賴

2022-04-01 03:17:29 字數 846 閱讀 1249

rust 依賴包使用國內映象

修改 cargo 的配置檔案即可,對應的配置檔案位置如下,如果沒有就自己建立乙個

windows 使用者

c:\users\username\.cargo\config

linux 或 mac 使用者

~/.cargo/config

在 config 中新增如下

# 選擇的映象源

# 喜歡哪個用哪個吧,沒有注釋掉的那個就是你選擇的

replace-with = '

ustc

'#replace-with = '

tuna

'#replace-with = '

sjtu

'#replace-with = '

rustcc

'#replace-with = '

aliyun

'# 原始碼位址

[source.crates-io]

registry = "

"# 映象位址

# 清華大學

[source.tuna]

registry = "

"# 中國科學技術大學

[source.ustc]

registry = "

git:

"# 上海交通大學

[source.sjtu]

registry = "

"# rustcc社群

[source.rustcc]

registry = "

git:

"# 阿里雲

[source.aliyun]

registry = "

"

rust 使用國內映象,快速安裝方法

由於rustup官方伺服器在國外 如果直接按照rust官網的安裝方式安裝非常容易失敗,即使不失敗也非常非常慢 如果用國內的映象則可以分分鐘就搞定 文件 curl proto https tlsv1.2 ssf sh首先修改一下上面的命令,將安裝指令碼匯出 curl proto https tlsv1...

rust國內映象配置

rustup映象配置 rustup 安裝方法可參考 官方的 readme.設定環境變數rustup dist server 用於更新 toolchain export rustup dist server 以及rustup update root 用於更新 rustup export rustup ...

pip安裝國內映象

清華 阿里雲 中國科技大學 華中理工大學 山東理工大學 豆瓣 note 新版ubuntu要求使用https源,要注意。例如 pip install i 包名 可以在使用pip的時候加引數 i 例如 pip install i pyspider,這樣就會從清華這邊的映象去安裝pyspider庫。lin...