当前位置:   article > 正文

ubuntu22安装最新版rustc并设置rustup、cargo清华镜像, 最后安装nushell_ubuntu升级 rustc

ubuntu升级 rustc

curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y --no-modify-path --profile default --component rustfmt
#这段无法镜像, 但貌似并不慢
#会提示 source ~/.cargo/env

#rust bin目录加到PATH
echo 'source ~/.cargo/env' >> ~/.bash_profile
 
# for bash
echo 'export RUSTUP_UPDATE_ROOT=https://mirrors.tuna.tsinghua.edu.cn/rustup/rustup' >> ~/.bash_profile
echo 'export RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup' >> ~/.bash_profile
#参考: https://mirrors.tuna.tsinghua.edu.cn/help/rustup/

cat <<'OEF' >  ~/.cargo/config
[source.crates-io]
replace-with = 'tuna'
[source.tuna]
registry = "https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index"
EOF
#参考: chatgpt :  https://site.easygpt.work/  点击 https://vip.easychat.work,
#   提示自动填写 “检测到链接中包含了预制设置,是否自动填入? { "endpoint": "https://api3.eqing.tech/api/openai" }”  
#      点击 是

source ~/.bash_profile
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

cargo安装nushell

cargo install nu
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/484701
推荐阅读
相关标签
  

闽ICP备14008679号