在我的EC2 linux实例中提供安装aws,awscli时出错

时间:2017-07-18 07:36:10

标签: linux amazon-ec2 aws-cli

请检查以下错误:

Error O/p

我的EC2实例如下:

ubuntu@ip-172-31-9-246:~$ uname -a
Linux ip-172-31-9-246 3.13.0-44-generic #73-Ubuntu SMP Tue Dec 16 00:22:43 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

我试过了sudo apt-get install awscli。它的o / p如下:

ubuntu@ip-172-31-9-246:~$ sudo apt-get install awscli
Reading package lists... Done
Building dependency tree       
Reading state information... Done
awscli is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 198 not upgraded.

但是当我提出aws --version时,我会收到错误:

Error O/p

请检查并提出建议。

1 个答案:

答案 0 :(得分:0)

该行:

ValueError: unknown locale: UTF-8

显示该区域设置未知。

因此,要解决此问题,您必须在bash配置文件中导出UTF-8。

您可以通过将以下两行添加到〜/ .bash_profile

来执行此操作
LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8

希望它适合你。

干杯!

最高