Centos8 (minimum installation) tutorial on how to install Python3.8+pip

Centos8 (minimum installation) tutorial on how to install Python3.8+pip

After minimizing the installation of Python8, I installed Python3.8.1. I looked for tutorials online, but none of them were completely successful. Or the installation is successful, but pip cannot be used. Finally, I compiled a command based on multiple tutorials, tested it successfully, and there were no problems with installation and use.

yum -y install wget
yum -y install setup 
yum -y install perl
yum install openssl-devel -y
yum install zlib-devel -y
yum -y groupinstall "Development tools"
yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
yum install -y libffi-devel zlib1g-dev
yum install zlib* -y
yum install libffi-devel -y
wget https://www.python.org/ftp/python/3.8.1/Python-3.8.1.tar.xz
tar -xvJf Python-3.8.1.tar.xz
mkdir /usr/local/python3 
cd Python-3.8.1
./configure --prefix=/usr/local/python3 --enable-optimizations --with-ssl 
make && make install
ln -s /usr/local/python3/bin/python3 /usr/local/bin/python3
ln -s /usr/local/python3/bin/pip3 /usr/local/bin/pip3
pip3 install --upgrade pip

Today I looked at the installation program of Baota and found that Python 3.6 can be quickly installed with the following command

 yum install python3 python3-devel -y
 ln -sf /usr/bin/python3 /usr/bin/python

After installation, use the following command to upgrade PIP and it can be used normally.

pip3 install --upgrade pip

Summarize

The above is the tutorial on how to install Python3.8+pip on Centos8 (minimized installation) introduced by the editor. I hope it will be helpful to everyone!

You may also be interested in:
  • Use shell script to install python3.8 environment in CentOS7 (recommended)
  • Install the latest python3.8 under Centos7
  • VirtualBox CentOS7.7.1908 Python3.8 build Scrapy development environment [graphic tutorial]
  • Detailed tutorial for installing python3.8.2 in CentOS

<<:  Vue plugin error: Vue.js is detected on this page. Problem solved

>>:  How to use echarts to visualize components in Vue

Recommend

WeChat applet wxs date and time processing implementation example

Table of contents 1. Timestamp to date 2. Convert...

Example of how to generate random numbers and concatenate strings in MySQL

This article uses an example to describe how MySQ...

How to configure user role permissions in Jenkins

Jenkins configuration of user role permissions re...

Detailed explanation of Linux rpm and yum commands and usage

RPM package management A packaging and installati...

Example of how to build a Mysql cluster with docker

Docker basic instructions: Update Packages yum -y...

Docker implements container port binding local port

Today, I encountered a small problem that after s...

Specific use of MySQL global locks and table-level locks

Table of contents Preface Global Lock Table lock ...

Create a custom system tray indicator for your tasks on Linux

System tray icons are still a magical feature tod...

JavaScript function encapsulates random color verification code (complete code)

An n-digit verification code consisting of number...

A brief discussion on which fields in Mysql are suitable for indexing

Table of contents 1 The common rules for creating...

Full HTML of the upload form with image preview

The upload form with image preview function, the ...

The meaning and usage of linux cd

What does linux cd mean? In Linux, cd means chang...

Summarize the common application problems of XHTML code

<br />For some time, I found that many peopl...

Tips for writing concise React components

Table of contents Avoid using the spread operator...