命令行下aws: command not found
成功安装CLI之后 pip3 install awscli --upgrade --user 运行 aws --version 提示:-bash: aws: command not found 设置path也没有好用,因为同时安装了python2和3,导致部门冲突 安装以下命令解决 pip3 install awscli --ignore-installed six 这里的six,就是解决python2和3差异的一个工具。 来源: CSDN 作者: nofish_xp 链接: https://blog.csdn.net/nofish_xp/article/details/99771553