This example takes the installation of Python 3.8 on Linux as an example. 1. Dependency package installation 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 libffi-devel 2. Download package: https://www.python.org/ftp/python/3.8.1/ wget https://www.python.org/ftp/python/3.8.1/Python-3.8.1.tgz 3. Decompression: 4. Installation: cd Python-3.8.1 ./configure --prefix=/usr/local/python3 make && make install 5. Establish soft connection ln -s /usr/local/python3/bin/python3.8 /usr/bin/python3 ln -s /usr/local/python3/bin/pip3.8 /usr/bin/pip3 6. Verify whether the installation is successful Execute python3 command Execute pip3 command If the above commands produce the results shown in the figure, the installation is successful. Summarize The above is a detailed tutorial on how to install Python 3.8.1 on Linux introduced by the editor. I hope it will be helpful to everyone! You may also be interested in:
|
<<: Solving problems encountered when importing and exporting Mysql
>>: How to encapsulate WangEditor rich text component in Angular
The installation and configuration methods of MyS...
In daily operation and maintenance work, backup o...
1. Query process show processlist 2. Query the co...
Method 1: Command line modification We only need ...
Table of contents Creating an SSL Certificate 1. ...
I have searched various major websites and tested...
Table of contents 1. Commonly used string functio...
Windows installation mysql-5.7.17-winx64.zip meth...
Preface I recently wanted to learn CocosCreator, ...
When the above settings are used in IE8 and Chrome...
The purpose of setting up MySQL query cache is: C...
First: First, confirm whether the server hardware ...
Table of contents Problems Redux Toolkit solves W...
For those who don't know how to install the s...
Before using idea to write JSP files, you need to...