如何在RHEL Linux服务器上安装Cargo?

时间:2019-03-08 21:31:20

标签: linux rust centos rhel rust-cargo

我尝试通过以下方式在RHEL服务器上安装Cargo:

curl https://sh.rustup.rs -sSf | sh

但是完成后,我得到了响应:

cargo
-bash: cargo: command not found

是否有其他安装方式?

1 个答案:

答案 0 :(得分:0)

  1. 首先启用rhel-7-variant-devtools-rpms存储库

    subscription-manager repos --enable rhel-7-varient-devtools-rpms

      

    用Red Hat Enterprise Linux系统变体(variantserver)替换workstation

  2. 启用rhel-variant-rhscl-7-rpms存储库:

    subscription-manager repos --enable rhel-variant-rhscl-7-rpms

  3. 将Red Hat Developer Tools密钥添加到您的系统:

    cd /etc/pki/rpm-gpg

    wget -O RPM-GPG-KEY-redhat-devel https://www.redhat.com/security/data/a5787476.txt

    rpm --import RPM-GPG-KEY-redhat-devel

    一旦订阅附加到系统并启用了存储库,就可以安装Red Hat Rust Toolset

  4. 然后安装rust-toolset-7

    yum install rust-toolset-7

    货物由rust-toolset-7-cargo包提供,并与rust-toolset-7包一起自动安装。