Skip to content

Instantly share code, notes, and snippets.

@jzucker2
Last active April 11, 2017 19:12
Show Gist options
  • Save jzucker2/9b360c1fe5fe9d20d28c49f4986d182d to your computer and use it in GitHub Desktop.
Save jzucker2/9b360c1fe5fe9d20d28c49f4986d182d to your computer and use it in GitHub Desktop.
Python Data Dump

Info Dump for Python Work

Here's my guide for getting started using Python with virtualenv and pip

Quick Set Up Commands

  1. Navigate to directory
  2. virtualenv env
  3. source env/bin/activate

To end: deactivate

Add package

  1. pip install <package name>
  2. pip freeze > requirements.txt

Install packages

  1. pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment