Skip to content Skip to sidebar Skip to footer

How Do I Resolve The "-bash: Aws: Command Not Found" Awscli Error?

I've installed the AWS CLI following Install the AWS CLI version 1 on macOS Using pip. pip install awscli --upgrade --user However, when I attempt to run AWS CLI commands, I get t

Solution 1:

Add the ~/.local/bin directory to your path. For example:

# .bashprofileexport PATH=~/.local/bin:$PATH

Source: Add the AWS CLI version 1 Executable to Your macOS Command Line Path

Post a Comment for "How Do I Resolve The "-bash: Aws: Command Not Found" Awscli Error?"