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.
rustup gives command not found error with zsh even after installing with brew
41.2k Views Asked by Rohith Joseph AtThere are 7 best solutions below

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
- Proceed with installation (default)
- Customize installation
- 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

To configure your current shell, run
source $HOME/.cargo/env
this command FINALLY completed the painful installation of Rust.

I used the following steps to install Rust on MacOS:
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.
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
- To open .zshrc use
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 rerunrustc --version
.
Did you try to install rustup via https://rustup.rs/
That may work correctly on your computer.