Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Tutorial on compiling and installing python package management installation tool pip under CentOS

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "the tutorial of compiling and installing python package management installation tool pip under CentOS". In the daily operation, I believe that many people have doubts about compiling and installing python package management installation tool pip under CentOS. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "compiling and installing python package management installation tool pip under CentOS". Next, please follow the editor to study!

Some friends asked me how to install pip of python in CentOS version. I gave the method of apt-get under Ubuntu earlier.

Ubuntu needs to install pip first.

The code is as follows:

Apt-get install python-pip

Install requests

The code is as follows:

Pip install requests

But some friends because it is centos, direct yum install pip or yum install python-pip are not allowed.

Actually, you can't yum, then download, compile and install it directly.

CentOS 6.4. install pip,CentOS install python package management installation tool pip as follows:

As of this writing, the latest pip is 1.5.5.

The code is as follows:

Wget-- no-check-certificate https://github.com/pypa/pip/archive/1.5.5.tar.gz

Note: when wget acquires https, add:-- no-check-certificate

The code is as follows:

Tar zvxf 1.5.5.tar.gz # decompress the file

Cd pip-1.5.5/

Python setup.py install

OK, so pip is installed.

Let's install requests.

The code is as follows:

Pip install requests

At this point, the study on "the tutorial on compiling and installing python package management installation tool pip under CentOS" is over. I hope you can solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report