Trying to Install AWS CLI, stuck on a step

南楼画角 提交于 2019-12-02 18:58:56

try adding below lines to ~/.bash_profile:

export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8

Installing AWSCLI in Windows Machine

I had similar issue with Windows 10 (64 bit). Python 3.5 and Python 2.7 are installed in my PC. I was getting ImportError: No module named awscli.clidriver.

Then I added %USERPROFILE%\AppData\Roaming\Python\Python35\Scripts in environment path variable and removed Python 2.7 from the environment path variable. Now I can successfully use awscli.

I have created a step by step AWSCLI installation guide in this Github repository: https://github.com/arsho/installation/tree/master/awscli_installation.

In my case nothing worked, untill i gave more permissions, i run aws command with a non root user

chown amzadm.root  /usr/bin/aws
chown amzadm.root -R /usr/lib/python2.6/site-packages/
chown amzadm.root -R /usr/lib/python2.6/site-packages/awscli/
Albert Park

I had to install EKS supported version and I ended up getting it to work with ignoring six:

$ pip3 install awscli --ignore-installed six

I fixed this by adding a line to the 'aws' script just before the import (line 19). So now the file reads:

sys.path.append('/Users/<username>/.local/lib/aws/lib/python2.7/site-packages/')
import awscli.clidriver

This work for me. In /.barshrc file

export AWS_DEFAULT_OUTPUT="json"
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!