我正在尝试在我的 Mac 上安装 AWS SAM Cli,因为我正在尝试学习 AWS 服务。但是我已经使用 bundle 成功安装了 AWS cli。但是当我也尝试安装 AWS SAM Cli 时。但它不起作用。这是我到目前为止所做的。
运行此命令
pip install --user aws-sam-cli
一切都很顺利。
然后我打开并编辑了 ~/.bash_profile。这是 .bash_profile 的内容
export PATH=/Applications/MAMP/bin/php/php7.2.7/bin:$PATH
# Find your Python User Base path (where Python --user will install packages/scripts)
$ USER_BASE_PATH=$(python -m site --user-base)
# Update your preferred shell configuration
-- Standard bash --> ~/.bash_profile
-- ZSH --> ~/.zshrc
export PATH=$PATH:$USER_BASE_PATH/bin
然后我关闭终端并运行 sam --version。
它说找不到命令。我的安装有什么问题?