Two ways to install Python3 on Linux servers

Two ways to install Python3 on Linux servers

First method

Alibaba Cloud and Baidu Cloud servers are available! ! !

yum install python3

Second method

1. Download the compressed package of python3.6.5

wget http://cdn.npm.taobao.org/dist/python/3.6.5/Python-3.6.5.tgz

2. Unzip the compressed package

tar -zxvf Python-3.6.5.tgz

3. Installation

cd Python-3.6.5
yum install -y zlib*
yum install -y gcc

If it appears:

insert image description here

cd /etc/yum.repos.d
mv CentOS-Base.repo CentOS-Base.repo.backup

Check the system version:

cat /etc/issue

insert image description here

Select the appropriate version of the source:

http://mirrors.163.com/.help/centos.html
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
yum clean all
yum makecache

Then directly:

yum install python3

Then it still reports an error. . . .

The reason is that the CentOS6 version cannot install python3 directly from the source, but CentOS7 can! ! !

Summarize

The above are two ways to install Python3 on Linux servers introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed tutorial on installing Python 3.8.1 on Linux
  • Tutorial on upgrading and installing python 3.8 and configuring pip and yum under Linux
  • Detailed tutorial on installing python3 and corresponding pip environment under linux
  • Install Python 3.6 on Linux and avoid pitfalls
  • How to modify the default Python version when installing Python on Linux
  • Detailed explanation of upgrading Python and installing pip under Linux
  • Python 3.7.0 installation tutorial under Linux
  • How to install Python3 on Linux and coexist with the system's own Python2

<<:  Explanation of the usage scenarios of sql and various nosql databases

>>:  js to realize the production method of carousel

Recommend

Solution to Ubuntu not being able to connect to the Internet

Problem description: I used a desktop computer an...

Practical method of deleting a row in a MySql table

First, you need to determine which fields or fiel...

Vue implements nested routing method example

1. Nested routing is also called sub-routing. In ...

Free tool to verify that HTML, CSS and RSS feeds are correct

One trick for dealing with this type of error is t...

Control the vertical center of the text in the HTML text box through CSS

When the height attribute of Text is defined, the ...

VMware configuration VMnet8 network method steps

Table of contents 1. Introduction 2. Configuratio...

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

Native js to achieve simple carousel effect

This article shares the specific code of js to ac...

Implementing a simple Gobang game with native JavaScript

This article shares the specific code for impleme...

MySQL uses custom sequences to implement row_number functions (detailed steps)

After reading some articles, I finally figured ou...

Install and configure ssh in CentOS7

1. Install openssh-server yum install -y openssl ...

CSS setting div background image implementation code

Adding background image control to a component re...

JS thoroughly understands GMT and UTC time zones

Table of contents Preface 1. GMT What is GMT Hist...

A brief discussion on event-driven development in JS and Nodejs

Table of contents Event-driven and publish-subscr...