如何在 Ubuntu 18.04 上安装 awscli?

Mik*_*sta 3 ubuntu software-installation aws datascience-anaconda

这应该是微不足道的,但似乎并非如此。我格式化了我的 comp 并安装了 conda(我已经习惯了这个打包工具)

pip install awscli --upgrade --user
Requirement already up-to-date: awscli in ./.local/lib/python3.7/site-packages (1.16.313)
Run Code Online (Sandbox Code Playgroud)

但现在我有问题

aws --version

Command 'aws' not found, but can be installed with:

sudo snap install aws-cli  # version 1.16.266, or
sudo apt  install awscli 
Run Code Online (Sandbox Code Playgroud)

我试过

sudo apt  install awscli
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package awscli is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'awscli' has no installation candidate
Run Code Online (Sandbox Code Playgroud)

我更新并升级了我的发行版,所以我看不到那方面的任何问题。如何解决这个问题?

快速安装

error: This revision of snap "aws-cli" was published using classic confinement
       and thus may perform arbitrary system changes outside of the security
       sandbox that snaps are usually confined to, which may put your system at
       risk.

       If you understand and want to proceed repeat the command including
       --classic.
Run Code Online (Sandbox Code Playgroud)

小智 6

请改用以下步骤:

sudo apt-get update
sudo apt-get install awscli

aws --version
Run Code Online (Sandbox Code Playgroud)


Mik*_*sta 1

这很好用

sudo snap install aws-cli --classic

aws --version
aws-cli/1.16.266 Python/3.5.2 Linux/5.0.0-37-generic botocore/1.13.2
Run Code Online (Sandbox Code Playgroud)