How to install python3 in centos7
1. Since Centos needs to install the Sqlite database in advance, otherwise Python will not be able to import sqlite3 normally later, so it is recommended to pre-install the Sqlite database before upgrading Python.
Failure to install readline-devel may cause Unable to use the up, down, left and right keys of the keyboard
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make -y
2. Download the Python3 installation package to be installed
3.Compile and install
PS: Here is an early warning about the dependency installation of Python3.7 version. If you are installing Python3.6, you can ignore the following step.
Exception prompt ModuleNotFoundError: No module named '_ctypes'
yum install libffi-devel -y
Compile and install
tar xvf Python-3.7.0.tar.xz cd Python-3.7.0/ ./configure\ prefix=/usr/local/python3\ --with-ssl --enable-sharedmake && make install
Test the installation
/usr/local/python3/bin/python3 -V
4. Modify the python command soft link and vim configuration
After successful installation, we need to change the vim configuration to Python2.7.5, to restore the use of yum
Back up the soft link of python and modify it to python3, which is convenient for us to use
mv /usr/bin/python /usr/bin/python.bak ln -s /usr/local/python3/bin/python3 /usr/bin/python
Python3 comes with pip, just add a soft link
ln /usr/local/python3/bin/pip3 /usr/bin/pip3
Modify vim configuration
vi /usr/bin/yum
#!/usr/bin/python2.7 # 修改#!/usr/bin/python为#!/usr/bin/python2.7 import sys try: import yum except ImportError: print >> sys.stderr, """\
Same operation, #!/usr/bin/python in the vi /usr/libexec/urlgrabber-ext-down file must also be modified to #!/usr/bin/ python2.7
For more Python related technical articles, please visit the Python Tutorial column to learn!
The above is the detailed content of How to install python3 in centos7. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

Fastapi ...

Regular expressions are powerful tools for pattern matching and text manipulation in programming, enhancing efficiency in text processing across various applications.
