Skip to content

Instantly share code, notes, and snippets.

@lukeyeager
Created October 10, 2016 22:19
Embed
What would you like to do?
# 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