Ubuntu 18.04 one-click upgrade of all third-party Python packages and installation of Python packages

Ubuntu 18.04 one-click upgrade of all third-party Python packages and installation of Python packages

1. What is pip

pip is a Python package management tool that provides the functions of searching, downloading, installing, and uninstalling Python packages.

2. Upgrade pip version

1. The default pip (pip 9.0.1) that comes with Ubuntu is based on Python 2.7

2. We need to reinstall pip based on Python3:

sudo apt-get install python3-pip

3. Upgrade pip3 version:

python3 -m pip install --upgrade pip

4. Check the pip version of Python3. If the following error is reported:

ImportError: cannot import name main

Solution: Edit the usr/bin/pip3 file

Before modification:

from pip import main
if __name__ == '__main__':
  sys.exit(main())

After modification:

from pip import __main__
if __name__ == '__main__':
  sys.exit(__main__._main())

Verify that the fix has taken effect successfully: pip3 -V

The terminal prints:

pip 19.3.1 from /home/wenbin/.local/lib/python3.6/site-packages/pip (python 3.6)

5. Upgrade all Python packages with one click

Just write a Python script to execute it. Here is the code:

import pkg_resources
from subprocess import call
 
for packages in [dist.project_name for dist in pkg_resources.working_set]:
  call("pip3 install --upgrade " + ''.join(packages) + ' --user', shell=True)

Because the pip corresponding to my Python3 is pip3, the pip in the script call("pip3 install --upgrade " + ''.join(packages) + ' --user', shell=True) should be written as pip3

Next, let's check what other packages there are in the historical versions of Python:

pip3 list --outdated

The terminal prints:

Package Version Latest Type
----------- ------- ------ -----
distro-info 0.0.0 0.10 sdist
pycairo 1.16.2 1.18.1 sdist
pycups 1.9.73 1.9.74 sdist
pygobject 3.26.1 3.34.0 sdist

Then use these non-upgraded packages

pip3 install --upgrade 要升級的包名

You can run the command to upgrade them one by one. I don’t use those four packages often, so I’m too lazy to upgrade them. . . (PS: I just installed Ubuntu 18.04, so it’s not convenient to take screenshots. Let’s just watch it for now-.-)

Knowledge point extension: Ubuntu 18.04 installs Python package

Recently, I have been running two models at the same time, and the cloud server can't handle it.

I got a company windows host, changed it to ubuntu18.04 and gave it to me to use mbp remote ssh. Cool~

1. Configure ssh-server

2. Install Python, etc.

Unbuntu18.04 comes with python3.6.8

1. Install pip3 and execute

sudo apt install python3-pipi

2. Install vim and execute

sudo apt install vim

2. Configure the image first and then install each python package

pip3 install some-package

Torch actually shows that it takes 20 hours to download, so I still use Tsinghua pypi mirror 8~

Note that an error may occur after upgrading pip10

ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Insufficient permissions: '/usr/local/lib/python3.6/dist-packages/defusedxml-0.6.0.dist-info'
Consider using the `--user` option or check the permissions.

Just add --user after install:

pip3 install -user some-package

Summarize

The above is the method of upgrading all third-party Python packages and installing Python packages in Ubuntu 18.04 with one click. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I 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:
  • Quickly generate Python crawler request header with one click
  • Use Python to create a data preprocessing tool (multiple operations can be completed with one click)
  • How to package Python Web projects to achieve one-click startup without installation
  • Use Python code to achieve one-click background removal function
  • How to install all dependent packages in Python with one click
  • Python one-click search for unused images, audio, and video resources in iOS projects
  • Python method to get Baidu network disk extraction code in one click
  • Python one-click method to create WeChat friends picture wall
  • Python dictionary loop to add a key multiple values ​​usage example
  • Python Fun Crawler Use Python to implement one-click teaching evaluation in smart campus

<<:  MySQL 8.0.15 installation and configuration tutorial under Win10

>>:  Detailed explanation of JavaScript WebAPI, DOM, events and operation element examples

Recommend

Some common properties of CSS

CSS background: background:#00ffee; //Set the back...

Vue Basics Listener Detailed Explanation

Table of contents What is a listener in vue Usage...

Detailed analysis of matching rules when Nginx processes requests

When nginx receives a request, it will first matc...

CSS3 implementation example of rotating only the background image 180 degrees

1. Mental Journey When I was writing the cockpit ...

MySQL 8.0.17 installation and simple configuration tutorial under macOS

If you don’t understand what I wrote, there may b...

Interactive experience trends that will become mainstream in 2015-2016

The most important interactive design article in ...

Deleting files with spaces in Linux (not directories)

In our daily work, we often come into contact wit...

A brief talk about JavaScript variable promotion

Table of contents Preface 1. What variables are p...

The latest Linux installation process of tomcat8

Download https://tomcat.apache.org/download-80.cg...

How to mount the CD to find the rpm package under Linux

Written in front Sometimes you need to install so...

MySQL select results to perform update example tutorial

1. Single table query -> update UPDATE table_n...

How to modify the default submission method of the form

The default submission method of html is get inste...

Detailed explanation of CSS margin overlap and solution exploration

I recently reviewed some CSS-related knowledge po...