Skip to content

Instantly share code, notes, and snippets.

@sjjohansen
Created November 20, 2014 23:51
Show Gist options
  • Save sjjohansen/c3b2187db7949500a74c to your computer and use it in GitHub Desktop.
Save sjjohansen/c3b2187db7949500a74c to your computer and use it in GitHub Desktop.
Python Virtualenv using EPEL on CentOS 6
# install epel
yum -y install epel-release
# install rpms
yum -y install python-pip python-virtualenv
# setup a virtual environment
virtualenv pyenv
source pyenv/bin/activate
# exit
deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment