AWS CLI V2 installation done but not showing botocore #9578
Replies: 1 comment 1 reply
|
This is expected for AWS CLI v2. AWS CLI v2 is a self-contained, bundled executable. In some newer builds/platform combinations the So “not showing botocore” does not mean the install is broken. What you can verify instead: Confirm you are running AWS CLI v2: aws --version If you have multiple installs, confirm which binary is being executed: which -a aws If you installed via Homebrew, confirm the installed package/version: brew info awscli If you specifically need the botocore version for debugging, the most reliable approach is to compare against the AWS CLI release you installed (CLI releases bundle a specific botocore internally). The CLI v2 does not expose botocore as an importable Python module on your system Python, because it does not use your system Python environment. In short:
|
Uh oh!
There was an error while loading. Please reload this page.
As per AWS docs
$ which aws
/usr/local/bin/aws
$ aws --version
aws-cli/2.19.1 Python/3.11.6 Darwin/23.3.0 botocore/2.4.5
but I have installed on Mac it got success like below but not showing botocore/version
please see the below for your information
aws --version
which aws
aws-cli/2.27.45 Python/3.13.4 Darwin/24.5.0 exe/x86_64
/usr/local/bin/aws
Could you please help me this
All reactions