Advertisement
viktor_khan

[AWS] Install AWS CLI tools

Apr 27th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. 1- Install the package pip
  2. $ sudo apt-get install python-pip
  3. 2- Install python development headers installed
  4. $ sudo apt-get install python-dev
  5. 3- Install AWS CLI tools
  6. pip install --upgrade --user awscli
  7. 4- Add this line to the file ~/.bashrc
  8. export PATH=~/.local/bin:$PATH
  9. 5- Load the profile into your current session
  10. $ source ~/.bashrc
  11. 6- Make the aws script executable
  12. $ chmod +x ~/.local/bin/aws
  13.  
  14. To verify that the AWS CLI installed correctly
  15. $ aws --version
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement