This tutorial will help you install Python 2.7 and Python 3.6, as well as setup Virtualenv on CentOS 6.
Virtualenv is a tool to create isolated Python environments which can keep the dependencies required by different projects in separate folders.
Install Prerequisites
Update the operating system to the latest kernel.
[[email protected] ~]# yum update
<some_output>
Is this ok [y/N]: y
Install development tools.
[[email protected] ~]# yum groupinstall -y 'development tools'
Install required packages.
[[email protected] ~]# yum install -y zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
Build Python 2.7 From Source
Download the latest source code and extract it.
[[email protected] opt]# cd /opt/ & wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz && tar xvf Python-2.7.13.tgz
Compile Python source code.
[[email protected] opt]# cd Python-2.7.13
[[email protected] Python-2.7.13]# ./configure --prefix=/usr/local --enable-unicode=ucs4 --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib"
Create and install Python binaries.
[[email protected] Python-2.7.13]# make && make altinstall
Add Python to search PATH
.
[[email protected] Python-2.7.13]# export PATH="/usr/local/bin:$PATH"
Build Python 3.6 From Source
Download the latest source code and extract it.
[[email protected] opt]# cd /opt/ && wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tgz && tar xvf Python-3.6.2.tgz
Compile Python source code.
[[email protected] opt]# cd Python-3.6.2
[[email protected] Python-3.6.2]# ./configure --prefix=/usr/local --enable-unicode=ucs4 --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib"
Create and install Python binaries.
[[email protected] Python-3.6.2]# make && make altinstall
Add Python to search PATH
.
[[email protected] Python-3.6.2]# export PATH="/usr/local/bin:$PATH"
Install Pip, Setuptools, and Virtualenv for Python 2.7
Python-3.6 has Pip built-in, which can be accessed using the command pip3.4
.
Download the setuptools and Pip installation script for Python-2.7.
[[email protected]]# cd /tmp/
[[email protected] tmp]# wget https://bootstrap.pypa.io/get-pip.py
[[email protected] tmp]# python2.7 get-pip.py --prefix=/usr/local/
Install Virtualenv.
[[email protected] tmp]# pip2.7 install virtualenv
Conclusion
You can now use the commands python2.7
and python3.6
to run your scripts. If you need to install any new packages, you can do that with pip2.7 install package_name
and pip3.6 install package_name
.
Want to contribute?
You could earn up to $300 by adding new articles
Suggest an update
Request an article