1. 程式人生 > 程式設計 >Python中包的用法及安裝

Python中包的用法及安裝

本篇文章介紹了Python中一些常見的包的作用和安裝方法,希望對學習Python中的朋友有幫助!

Python中一些包的基本用處和安裝方法

pika可以用來連線RabbitMQ

pip install pika -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

requests是HTTP庫

Request支援HTTP連線保持和連線池,支援使用cookie保持會話,支援檔案上傳,支援自動響應內容的編碼,支援國際化的URL和POST資料自動編碼。

pip install requests -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

SQLAlchemy是ORM框架

pip install SQLAlchemy -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

pymongo是連線mongodb的庫

pip install pymongo -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

MySQL-python是連線mysql的庫

apt-get install python-mysqldb

gearman分散式任務系統

pip install gearman -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

lxml是python的一個解析庫,支援HTML和XML的解析

pip install lxml -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

elasticsearch庫,es的客戶端庫

pip install elasticsearch -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

pycurl是curl庫

pip install pycurl -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

報錯

__main__.ConfigurationError: Could not run curl-config: [Errno 2] No such file or directory

apt-get install libcurl4-openssl-dev

以上就是Python中一些包的基本用處和安裝方法的詳細內容,如果大家有任何補充可以聯絡我們小編。