What's new

Welcome to GloTorrents Community

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Ask question

Ask Questions and Get Answers from Our Community

Answer

Answer Questions and Become an Expert on Your Topic

Contact Staff

Our Experts are Ready to Answer your Questions

How to Install Python 3.7 on CentOS/RHEL 7/6 & Fedora 30-25

_.:=iTake=:._

Administrator
Staff member
ZeuS
Super Moderator
+Lifetime VIP+
Registered
Joined
Oct 20, 2018
Messages
1,370
Reaction score
1,431
Points
113
Credits
14,854
Step 1 – Requirements

This Python installation required GCC compiler on your system. Login to your server using ssh or shell access. Now, use the following command to install prerequisites for Python before installing it.

Code:
yum install gcc openssl-devel bzip2-devel libffi-devel

Step 2 – Download Python 3.7
Download Python using the following command from the Python official site. You can also download the latest version in place of specified below.

Code:
cd /usr/src
wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz

Now extract the downloaded package.

Code:
tar xzf Python-3.7.3.tgz

Step 3 – Install Python 3.7
Use below set of commands to compile Python source code on your system using altinstall.

Code:
cd Python-3.7.3
./configure --enable-optimizations
make altinstall

make altinstall is used to prevent replacing the default python binary file /usr/bin/python.

Now remove downloaded source archive file from your system

Code:
rm /usr/src/Python-3.7.3.tgz

Step 4 – Check Python Version
Check the latest version installed of python. Use command python3.7 instead of just python.

Code:
python3.7 -V

Python 3.7.3

Source:

https://tecadmin.net/install-python-3-7-on-centos/
 
shape1
shape2
shape3
shape4
shape7
shape8
Top