xxxxxxxxxx
Open your terminal and run the following command to open your .zshrc file:
nano ~/.zshrc
In the .zshrc file, add the following line at the end of the file:
export PATH="$HOME/.composer/vendor/bin:$PATH"
Save and exit the .zshrc file by pressing Ctrl + X, then Y, then Enter.
Run the following command to reload your .zshrc file:
source ~/.zshrc
Open your terminal and run the following command to open your .zshrc file:
nano ~/.zshrc
In the .zshrc file, add the following line at the end of the file:
export PATH="$HOME/.composer/vendor/bin:$PATH"
Save and exit the .zshrc file by pressing Ctrl + X, then Y, then Enter.
Run the following command to reload your .zshrc file:
source ~/.zshrc
xxxxxxxxxx
The easiest way to add a new path to $PATH (the environment variable) is with the export command. In this example we’ll add “~/opt/bin” to the user PATH with export:
export PATH=$PATH:~/opt/bin
You can run that directly from the command line, then check the $PATH with echo to show that it has been added like so:
echo $PATH
xxxxxxxxxx
sudo vim /etc/paths
#add the path to this file and close (:wq in vim)
#note only add the path so often you may see:
export PATH=$PATH:/new/dir/location1.bin
#here you would just add /new/dir/location1.pin to /etc/paths