Skip to content

Instantly share code, notes, and snippets.

View LayneSmith's full-sized avatar
🎯
Focusing

Layne Smith LayneSmith

🎯
Focusing
View GitHub Profile
@LayneSmith
LayneSmith / README.md
Last active July 6, 2018 01:53 — forked from arianagiorgi/README.md
AWS Lambda Automation

Automation with AWS Lambda

Setup Python-lambda

We'll be using Python-lambda

  1. Create new directory and call it whatever you want.

  2. Enter new directory and run virtualvenv venv from Terminal. If you don't have virtualenv, you can install it with pip install virtualenv.

@LayneSmith
LayneSmith / virtualenv.md
Last active June 7, 2017 17:48 — forked from johndhancock/terminalCommands.md
Creating virtual environment in projects

In command line of directory desired:

Creating viruatl environment

virtual venv

Specifying python version upon creation

virtual venv --python=python3

Stepping into the virtual environment

source venv/bin/activate