LoginSignup
0
0

More than 5 years have passed since last update.

rust test

Posted at

この方
http://qiita.com/masayadk1229/items/08c5e384604f368c1762
のを試しました, というだけの記事.
リンク先を読むべし.

ちなみにrustを試したかったのもこの方と同じ理由でした.

本家

https://www.rust-lang.org/ja-JP/
https://www.rust-lang.org/ja-JP/documentation.html
https://doc.rust-lang.org/book/

install

installは元記事の方はcurlで落としてきてからやっていましたが, 私はなぜか本家からDLしてinstallしました.

あとは, pathを通せばok

1. open
vi ~/.bash_profile

2. add
if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi

3. open
vi ~/.bashrc

4. add
#Rust 
export PATH="$HOME/.cargo/bin:$PATH"

5. reflection
source ~/.bashrc

result

スクリーンショット 2017-05-16 23.57.23.jpg

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0