Answers for "zsh: command not found: aws"

0

zsh: command not found: aws

export PATH=~/.local/bin:$PATH
Posted by: Guest on September-14-2020
0

zsh: command not found: npm

# first make sure where is the npm installed
$ which npm
# output: /home/sallo/.nvm/versions/node/v14.15.3/bin/npm

# now open the file ~/.zshrc and add the below line at the end.
# change the path in cause you have different

export PATH=$HOME/.nvm/versions/node/v14.15.3/bin/npm:$PATH

# save the file and open new terminal
Posted by: Guest on January-04-2021
-1

aws terminal in mac

curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
unzip awscli-bundle.zip
sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
Posted by: Guest on June-20-2020

Code answers related to "zsh: command not found: aws"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language