A simple guide to installing pip and managing Python packages on CentOS

PHPz
Release: 2024-01-18 09:59:18
Original
1121 people have browsed it

A simple guide to installing pip and managing Python packages on CentOS

Simple Guide: How to install pip and manage Python packages on CentOS

Introduction:
pip is a very convenient tool when developing with Python on CentOS Tools for installing, upgrading, and managing Python packages. This guide will provide you with detailed steps and code examples to install pip on the CentOS operating system and use pip for Python package management.

1. Install pip:

  1. Use the following command in the terminal to download the get-pip.py file:

    curl -O https://bootstrap.pypa.io/get-pip.py
    Copy after login
  2. Use the following command to run the get-pip.py file to install pip:

    python get-pip.py
    Copy after login
  3. To ensure that pip is successfully installed, run the following command:

    pip --version
    Copy after login

    If the installation is successful, it will be displayed The version number of pip.

2. Use pip to install Python software package:

  1. Installation package example:

    pip install package_name
    Copy after login

    For example, to install Django package, run the following command:

    pip install django
    Copy after login
  2. Install the specified version of the package:

    pip install package_name==version_number
    Copy after login

    For example, to install Django 2.2 version, run the following command:

    pip install django==2.2
    Copy after login

3. Use pip to upgrade the Python software package:

  1. Example of upgrading the software package:

    pip install --upgrade package_name
    Copy after login

    For example, to upgrade the Django software package, please run the following command:

    pip install --upgrade django
    Copy after login
  2. Upgrade all installed packages:

    pip freeze --local | grep -v '^-e' | cut -d = -f 1 | xargs -n1 pip install -U
    Copy after login

4. Use pip to uninstall Python packages:

  1. Uninstall package example:

    pip uninstall package_name
    Copy after login

    For example, to uninstall a Django package, run the following command:

    pip uninstall django
    Copy after login

5. Use pip to list installed Python packages:

pip list
Copy after login

This command will list all installed Python packages and their version numbers.

6. Use pip to search for Python packages:

pip search package_name
Copy after login

For example, to search for packages whose names contain "django", run the following command:

pip search django
Copy after login

Conclusion:
Through this guide, you have learned to install pip on CentOS and use pip to install, upgrade, uninstall, list, and search Python packages. pip is an essential tool for Python development. I hope it can improve your development efficiency and bring convenience to you.

The above is the detailed content of A simple guide to installing pip and managing Python packages on CentOS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!