Created
November 20, 2014 23:51
-
-
Save sjjohansen/c3b2187db7949500a74c to your computer and use it in GitHub Desktop.
Python Virtualenv using EPEL on CentOS 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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