rustup gives command not found error with zsh even after installing with brew

41.2k Views Asked by At

I installed rustup with brew command but still says that rustup command is not found. I am not sure if I am missing any installation step. Any help would be appreciated.

7

There are 7 best solutions below

1
On BEST ANSWER

Did you try to install rustup via https://rustup.rs/

That may work correctly on your computer.

0
On

Make sure you has install rust successfully first setup

$ brew install rustup
$ source ~/.zshrc
$ source /.bashrc
$ brew reinstall rustup-init

now you can run command line

$ rustup-init

Welcome to Rust!

This will download and install the official compiler for the Rust programming language, and its package manager, Cargo.

Rustup metadata and toolchains will be installed into the Rustup home directory, located at:

/Users/location/.cargo

modify PATH variable: yes

  1. Proceed with installation (default)
  2. Customize installation
  3. Cancel installation

Nest Testing

To check if you have installed rust Succesful on your machine type the following command in your terminal

$ rustc

Once successfully done, then add the Path variable to .zshrc using:

To open .zhrc use

$ nano ~/.zshrc

or

$ open . ~/.zshrc

Add

export PATH="$HOME/.cargo/bin:$PATH"

to .zshrc, after that please run

$ source ~/.zshrc
$ source /.bashrc

To start a new project, navigate to where you want your project to be created then simply run cargo new <project-name>. In my case I have decided to name my project "todo-cli" so I can run:

$ cargo new todo-cli
1
On

To configure your current shell, run

source $HOME/.cargo/env 

this command FINALLY completed the painful installation of Rust.

1
On

I used the following steps to install Rust on MacOS:

  1. Install Rust using:

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
    

    Make sure that you customize the installation and answer No when it asks to modify the Path.

  2. Once successfully done, then add the Path variable to .zshrc using:

    • To open .zshrc use nano ~/.zshrc
    • Add export PATH="$HOME/.cargo/bin:$PATH" to .zshrc
  3. Check if the installation was successfull using rustc --version
    If that doesn't work right away then use the command:
    source $HOME/.cargo/env and rerun rustc --version.

0
On

i faced this issue in Ubuntu on WSL
Ubuntu terminal environment on Windows with Windows Subsystem for Linux (WSL).

I just restarted the terminal.
Thats all.

In your case u may require to reboot.

enter image description here

0
On

I had the same problem, because the PATH variable didn't include the Cargo's bin directory right after installation.

I closed and opened again the shell, and it worked!

0
On

By Running this code resolved my problems

export PATH="$HOME/.cargo/bin:$PATH"