Rust語言快速安裝指南

banq發表於2022-11-27

使用rustup:
  • 安裝: curl https://sh.rustup.rs -sSf | sh
  • 解除安裝:rustup self uninstall
  • 讓我們離線檢視 Rust 文件: rustup doc
  • 您可以更新到更新的 Rust 版本(如果您願意): rustup update


VSCode 整合問題
  • 如果您看到這些錯誤:
    • 無法啟動客戶端 Rust 語言伺服器。
    • Rustup 不可用。
  • 將此新增到您的配置中: json "rust-client.rustupPath": "~/.cargo/bin/rustup",

工具鏈執行問題
  • 如果您cargo在 OS X 上執行時看到錯誤:
    • "Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib" cargo
  • 更改您的 OpenSSL 版本: bash brew switch openssl 1.0.2r

相關文章