Skip to content

Instantly share code, notes, and snippets.

@lukeyeager
Created October 10, 2016 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukeyeager/1651330a0e317f790b8a32584cc7e23b to your computer and use it in GitHub Desktop.
Save lukeyeager/1651330a0e317f790b8a32584cc7e23b to your computer and use it in GitHub Desktop.
# Create a new virtualenv
# Allow it to use system standard packages
virtualenv venv --system-site-packages
# Activate the new environment
source venv/bin/activate
# Install any requirements that aren't already satisfied
pip install -r requirements.txt
# ^ That command should only install setuptools
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment