其他分享
首页 > 其他分享> > mac系统cargo安装rust包慢(换镜像)

mac系统cargo安装rust包慢(换镜像)

作者:互联网

今天在学习rust的时候,需要安装rust的rand包,使用的就是cargo,但是怎么安装都不行,主要是镜像不对;解决办法如下:

在mac系统上,使用terminal打开cargo目录:

cd ~/.cargo

然后创建一个叫config的文件,我这里使用的是vscode编辑器,因为我不喜欢使用vim;然后在terminal中继续输入:

code config

使用vscode打开后,向config输入下面内容:

[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
replace-with = 'ustc'
[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"

这一步就是相当于更换了这个cargo的镜像源;

最后再次尝试,就可以愉快的下载安装依赖包了;

标签:cargo,crates,包慢,mac,io,ustc,config,rust
来源: https://blog.csdn.net/yuanzhoulvpi/article/details/115047720