python3添加requests庫


1、資源下載

https://codeload.github.com/psf/requests/zip/master

https://www.python.org/
 https://files.pythonhosted.org/packages/41/b6/4f0cefba47656583217acd6cd797bc2db1fede0d53090fdc28ad2c8e0716/certifi-2018.10.15.tar.gz  https://files.pythonhosted.org/packages/a5/74/05ffd00b4b5c08306939c485869f5dc40cbc27357195b0a98b18e4c48893/urllib3-1.24.tar.gz  https://files.pythonhosted.org/packages/65/c4/80f97e9c9628f3cac9b98bfca0402ede54e0563b56482e3e6e45c43c4935/idna-2.7.tar.gz  https://files.pythonhosted.org/packages/fc/bb/a5768c230f9ddb03acc9ef3f0d4a3cf93462473795d18e9535498c8f929d/chardet-3.0.4.tar.gz

 

2、說明

系統:
CentOS Linux release 7.4.1708

系統已經安裝了python3替代了自帶的python2

使用應用requests庫的賬戶登錄系統

 

3、編譯安裝

安裝依賴庫

tar -zxf certifi-2018.10.15.tar.gz 
cd certifi-2018.10.15/ python setup.py install

 

tar -zxf urllib3-1.24.tar.gz 
cd urllib3-1.24/ python setup.py install

 

tar -zxf idna-2.7.tar.gz 
cd idna-2.7/ python setup.py install

 

tar -zxf chardet-3.0.4.tar.gz 
cd chardet-3.0.4/ python setup.py install

 

安裝requests庫

unzip requests-master.zip
cd requests-master/ python setup.py install

 

查看庫

$ pip3 list
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
certifi (2018.10.15) chardet (3.0.4) idna (2.7) pip (9.0.1) psycopg2-binary (2.8.3) requests (2.22.0) setuptools (28.8.0) tornado (6.0.2) urllib3 (1.24)

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM