Detailed explanation of upgrading Python and installing pip under Linux

Detailed explanation of upgrading Python and installing pip under Linux

Linux version upgrade:

1. First, confirm that the Python version that comes with the Linux operating system is consistent with the version you need

All Python versions are available at https://www.python.org/ftp/python/ Select Download

2. wget https://www.python.org/ftp/python/2.7.11/Python-2.7.11.tgz to download

3. Decompression

tar -zxvf Python-2.7.11.tgz

Enter the Python-2.7.11 directory and enter

  • ./configure
  • make
  • make install

4. Check whether the Python version is the system default version at this time

implement:

  • mv /usr/bin/python /usr/bin/python2.6
  • ln -s /usr/local/bin/python2.7 /usr/bin/python
  • Check again to see if the version you want to install has been updated

Pip Installation

1. A get-pip.py is provided in python; the following is the address

https://bootstrap.pypa.io/get-pip.py

2. Execute curl https://bootstrap.pypa.io/get-pip.py | python to download and install in Linux

This is very convenient. You can pack whatever you want.

Pip install xxx

Note: After upgrading the Python version, your yum command may not work because the yum command is written in Python.

# vi /usr/bin/yum #Open the yum command file and change the first line of script startup address 

Change it to /usr/bin/python2.6 in step 4 above and it will be ok

Supplementary installation of pip under Windows:

Quick method:

Find the C:\Python27\Scripts directory: Run easy_install.exe pip to install pip

pip upgrade:

When we use pip to install modules, sometimes the pip version is too low

One command solves:

python -m pip install -U pip

Both Linux and Windows support this command

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Tutorial on upgrading and installing python 3.8 and configuring pip and yum under Linux
  • Detailed explanation of upgrading Python 2.6 to Python 2.7 on CentOS and installing pip
  • Install, upgrade, and upgrade fixed packages with pip in Python

<<:  MySQL variable declaration and stored procedure analysis

>>:  How to delete table data in MySQL

Recommend

Execute initialization sql when docker mysql starts

1. Pull the Mysql image docker pull mysql:5.7 2. ...

An article to help you learn CSS3 picture borders

Using the CSS3 border-image property, you can set...

Example of using supervisor to manage nginx+tomcat containers

need: Use docker to start nginx + tomcat dual pro...

Detailed explanation of the usage of two types of temporary tables in MySQL

External temporary tables A temporary table creat...

Three methods of inheritance in JavaScript

inherit 1. What is inheritance Inheritance: First...

Kill a bunch of MySQL databases with just a shell script like this (recommended)

I was woken up by a phone call early in the morni...

MySQL index principle and query optimization detailed explanation

Table of contents 1. Introduction 1. What is an i...

Detailed explanation of JS browser event model

Table of contents What is an event A Simple Examp...

Web page CSS priority is explained in detail for you

Before talking about CSS priority, we need to und...

A brief discussion on JS regular RegExp object

Table of contents 1. RegExp object 2. Grammar 2.1...

Detailed explanation of Docker data backup and recovery process

The data backup operation is very easy. Execute t...

How to gracefully and safely shut down the MySQL process

Preface This article analyzes the process of shut...

Vue method to verify whether the username is available

This article example shares the specific code of ...

Web Design Tutorial (5): Web Visual Design

<br />Previous article: Web Design Tutorial ...