Setting AWS connection on Raspberry Pi

Install AWS-CLI

See: AWS Command Line Interface 설치 / 명령줄 경로에 AWS CLI 실행 파일 추가

Logs:

$ pip install awscli --upgrade --user
$ which python
/usr/bin/python
$ ls -al /usr/bin/python
lrwxrwxrwx 1 root root 9 Jan 24  2017 /usr/bin/python -> python2.7
$ nano ~/.profile
export PATH=~/.local/bin:$PATH
$ source ~/.profile

$ means a writable line in Bash(Terminal). type the commands just after $ signs.

Likewise, # means a writable line in "bluetooth" program. type the commands just after * signs.

AWS-CLI Configuration

See: AWS CLI 구성

Last updated