daily log 11.09.19

less than 1 minute read

ERRORS! Maybe maybe maybe have to do with using ONLY pip3 never just pip

TROUBLESHOOTING PYTHON + AWS

  1. Redo AMAZON flask tutorial

python3 -m venv v2-virt source v2-virt/bin/activate pip install flask==1.0.2 pip freeze > requirements.txt

eb init -p python-3.6 v2-aws-flask –region us-west-2 eb create v2-flask-env

  1. Add summarizer stuff gradually into the amazon tutorial
import requests

url = 'https://www.google.com/'
r = requests.get(url)
r.text

RESOURCES: SO

INSTANCE ID

i-0b52ce7d8a1908fd0

PUBLIC DNS

Your identification has been saved in /Users/aaroncaraway/.ssh/aws-eb5. Your public key has been saved in /Users/aaroncaraway/.ssh/aws-eb5.pub.

aws ec2 create-key-pair –key-name aws-eb6 –query ‘KeyMaterial’ –output text > MyKeyPair.pem

ssh -i MyKeyPair.pem ec2-user@ec2-52-36-193-117.us-west-2.compute.amazonaws.com

Updated: