Shellbye.github.io icon indicating copy to clipboard operation
Shellbye.github.io copied to clipboard

CentOS 6.9 install Python3

Open Shellbye opened this issue 7 years ago • 0 comments

yum -y update
yum groupinstall -y development
yum install -y zlib-dev openssl-devel sqlite-devel bzip2-devel
yum install xz-libs -y
wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tar.xz
xz -d Python-3.6.5.tar.xz
tar -xvf Python-3.6.5.tar
cd Python-3.6.5
./configure --prefix=/usr/local
make && make altinstall
python3.6 -V

Shellbye avatar May 07 '18 09:05 Shellbye