0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【エラー】-bash: rustc: command not found

Last updated at Posted at 2021-02-26

事象

The Rust Programming Language 日本語版 に従い、記載されているコマンドでLinuxにRustをインストールをした。

インストールがうまく行けば、以下の行が出現するでしょう:

Rust is installed now. Great!

この行が表示されていることを確認。
しかし、Rustが正常にインストールされているか確かめようとしたところ、下記のエラー。

~$ rustc --version
-bash: rustc: command not found

対処法:ターミナル再起動

一度ターミナルを閉じてから再び開き、再度実行したところ、エラーが解消していた。

~$ rustc --version
rustc 1.50.0 (cb75ad5db 2021-02-10)

原因

コマンドにパスが通っていなかった。
インストール時のメッセージを見てみると、確かに

Rust is installed now. Great!

To get started you need Cargo's bin directory ($HOME/.cargo/bin) in your PATH
environment variable. Next time you log in this will be done
automatically.

とある。

インストール時にホームディレクトリの.bashrcが書き換わっていたので、反映させるために再起動が必要だった。

追記

再起動の代わりに source $HOME/.cargo/env コマンド実行でもいいらしい。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?