我正在尝试在Mac上安装AWS SAM Cli,因为我正在尝试学习AWS服务。但是我已经使用捆绑软件成功安装了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。
这表示找不到命令。我的安装有什么问题?
答案 0 :(得分:0)
现在推荐的安装SAM CLI的方法是使用brew,说实话,这是更好的方法,可以避免许多麻烦,就像您现在要面对的那样。有关详细信息,请参见these instructions。