Detailed explanation of the update command for software (library) under Linux

Detailed explanation of the update command for software (library) under Linux

When installing packages on an Ubuntu server, you often use sudo apt-get install package name or sudo pip install package name. What is the difference between the two?

1. Difference

pip is used to install all Python dependency packages from PyPI (https://www.python.org/), and can choose to install any previous version of dependency packages uploaded on PyPI, which I personally think are Python-related packages and third-party packages and various versions;

apt-get can be used to install software, update sources, and can also be used to update typical dependency packages from Ubuntu (https://launchpad.net/ubuntu). Typical installation means that it only installs a single version (the latest release, or the most recent one), and we cannot decide the version of the dependency package we want to install or choose a previous version.

Personally, I think they are easy to distinguish: after all, one is updating the system-level package, and the other is updating a programming language-level package (library).

2. Installation and application

apt-get can be used directly in the following format:

$ sudo apt-get install/delete package
$ sudo apt-get -f install #Repair installation$ sudo apt-get dist-upgrade #Upgrade system$ sudo apt-get upgrade #Update installed packages$ apt-get source package #Download the source code of the package$ sudo apt-get build-dep package #Install related compilation environment$ sudo apt-get clean && sudo apt-get autoclean #Clean up useless packages

pip needs to be installed before it can be used. The installation process is as follows (applicable to Ubuntu 10.10 and above), using the format: pip install package.

$ sudo apt-get install python-pip python-dev build-essential
$ sudo pip install --upgrade pip

Installing Python library under Linux

sudo apt-get install python-numpy 
sudo apt-get install python-scipy 
sudo apt-get install python-matplotlib 
sudo apt-get install python-pip

other

pip list lists all libraries

pip show torch View library information

The above detailed explanation of the update commands for software (libraries) under Linux is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of how to upgrade software package versions under Linux
  • A complete collection of commonly used Linux commands (super comprehensive)
  • Very practical Linux system operation and maintenance common commands and common sense (super practical)

<<:  mysql settings to change the root password, mysql server connection, mysql common commands diagram

>>:  Vue Element front-end application development: Use of API Store View in Vuex

Recommend

js realizes the function of clicking to switch cards

This article example shares the specific code of ...

Detailed explanation of Tomcat configuration and optimization solutions

Service.xml The Server.xml configuration file is ...

Analysis of MySQL data backup and recovery implementation methods

This article uses examples to describe how to bac...

How to use Dockerfile to create a mirror of the Java runtime environment

The current environment is: Centos 7.5 docker-ce ...

Summary of relevant knowledge points of ajax in jQuery

Preface Students who learn JavaScript know that A...

MySQL download and installation details graphic tutorial

1. To download the MySQL database, visit the offi...

Detailed explanation of CSS float property

1. What is floating? Floating, as the name sugges...

Solution to the problem of MySQL thread in Opening tables

Problem Description Recently, there was a MySQL5....

Some ways to eliminate duplicate rows in MySQL

SQL statement /* Some methods of eliminating dupl...

The principle and application of ES6 deconstruction assignment

Table of contents Array destructuring assignment ...

CSS warped shadow implementation code

This article introduces the implementation code o...

mysql 5.7.23 winx64 decompression version installation tutorial

Detailed installation tutorial of mysql-5.7.23-wi...

Example of using Docker to build an ELK log system

The following installations all use the ~/ direct...

Implementation of breakpoint resume in vue-video-player

In a recent project, I needed to implement the fu...