生锈赛车的货物路径设置

时间:2016-06-22 11:27:53

标签: rust rust-cargo

我刚刚使用racer安装了cargo。安装后说出来:

Installing /home/karthik/.cargo/bin/racer
warning: be sure to add `/home/karthik/.cargo/bin` to your PATH to be able to run the installed binaries

我该怎么做?谷歌搜索没有帮助。另外,我是否应该为货箱设置PATH变量?

编辑:操作系统是Ubuntu 14.04,我有超级用户访问权限

2 个答案:

答案 0 :(得分:4)

您必须将货物箱路径添加到PATH变量,并在RUST_SRC_PATH.profile中设置.bash_profile

Related unix.stackechange question

答案 1 :(得分:1)

有两个步骤:

(1)将货箱添加到PATH变量中。您可以运行$ whereis cargo来查找bin路径,然后执行$ sudo -H gedit /etc/environment,将新路径部分添加到当前PATH变量中。您需要保存并关闭文件(并且可以在保存期间忽略终端中的错误消息),以使其生效。

(2)运行$ rustup component add rust-src为您下载必要的Rust源文件。

此时Racer应该正常工作。

这是基于答案here