我尝试通过以下方式在RHEL服务器上安装Cargo:
curl https://sh.rustup.rs -sSf | sh
但是完成后,我得到了响应:
cargo
-bash: cargo: command not found
是否有其他安装方式?
答案 0 :(得分:0)
首先启用rhel-7-variant-devtools-rpms
存储库
subscription-manager repos --enable rhel-7-varient-devtools-rpms
用Red Hat Enterprise Linux系统变体(
variant
或server
)替换workstation
启用rhel-variant-rhscl-7-rpms
存储库:
subscription-manager repos --enable rhel-variant-rhscl-7-rpms
将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
然后安装rust-toolset-7
yum install rust-toolset-7
货物由rust-toolset-7-cargo
包提供,并与rust-toolset-7
包一起自动安装。