Installing Python 3 with virtualenv on CentOS 7
11 May 2016It’s 2016 and CentOS 7 is still defaulting to Python 2.7! Thankfully Python 3 has landed in the EPEL repo and here’s how I got it working with virtualenv on a fresh install of CentOS 7:
- Enable the EPEL repository with:
- Install python34 and python-pip packages with:
- Update pip and install virtualenv with:
- Create and activate a new python3 virtualenv with:
- Activate the environment and code away :D