python 查看某個第三方包的依賴包和被依賴包以及指定pip源安裝

在某些情況下,我們需要查看第三方包的依賴包和被依賴包:
  1. pip show pkg_name 命令輸出的 RequiresRequired-by

     (archiver_venv)[root@HC-25-28-38 archiver_all]# pip show celery
     DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
     Name: celery
     Version: 4.2.1
     Summary: Distributed Task Queue.
     Home-page: http://celeryproject.org
     Author: Ask Solem
     Author-email: [email protected]
     License: BSD
     Location: /export/servers/archiver_all/archiver_venv/lib/python2.7/site-packages/celery-4.2.1-py2.7.egg
     Requires: pytz, billiard, kombu
     Required-by: django-celery-beat, django-celery-results, flower
     (archiver_venv)[root@HC-25-28-38 archiver_all]# 
    
  2. pipdeptree -p pkg_name 能顯示所有的依賴包及其子包,推薦用這個

指定 pip 源安裝包:

pip3 install -r requirements.txt -i https://pypi.douban.com/simple

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章