Home  >  Article  >  Backend Development  >  How to install library using python

How to install library using python

silencement
silencementOriginal
2019-05-21 20:36:4164147browse

How to install the python library: 1. In the [Run] window, enter the command "cmd" and press Enter to open the cmd command line window. 2. Enter the command "pip install library name" on the command line to install the specified library; if it is python3.0 or above, use the "pip3 install library name" command to install it.

How to install library using python

#Today I will teach you how to install the python third-party library.

The current mainstream versions of python are python2 and python3. The following example is demonstrated in python3.

Python3.0 and above versions come with pip. pip is a package management tool for python, which can support package installation, uninstallation, upgrade and other operations.

Before installing the library, make sure that python is successfully installed on the computer!!!

Installation steps:

Use [win r] to open the [Run] window and enter the command "cmd", Press Enter and open the cmd command line window

How to install library using python

Enter pip3 install xxx in the command line, where xxx represents the name of the package. For example, if you install the requests library

How to install library using python

and press Enter

89e5f3e43cba20537a2b877fec7dbaHow to install library using python

, you can install the requests library. Install other libraries in the same way.

The above is the detailed content of How to install library using python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn