文中的操作是在cmd中進行的操作,當然也可以在其它的控制台中進行。
使用命令: python就可
2.1 查詢所有
使用的命令 pip list
c:\users\administrator>pip list
package version--
----
----
----
----
----
---attrs 20.3
.0automat 20.2
.0beautifulsoup4 4.9
.3certifi 2020.12
.5cffi 1.14
.4chardet 3.0
.4constantly 15.1
.0cryptography 3.3
.1cssselect 1.1
.0fake-useragent 0.1
.11hyperlink 20.0
.1idna 2.10
incremental 17.5
.0itemadapter 0.2
.0itemloaders 1.0
.4jmespath 0.10
.0lxml 4.6
.2parsel 1.6
.0pip 20.3
.1protego 0.1
.16pyasn1 0.4
.8pyasn1-modules 0.2
.8pycparser 2.20
pydispatcher 2.0
.5pyhamcrest 2.0
.2pyopenssl 20.0
.0pyquery 1.4
.3queuelib 1.5
.0requests 2.25
.0scrapy 2.4
.1service-identity 18.1
.0setuptools 41.2
.0six 1.15
.0soupsieve 2.0
.1twisted 20.3
.0urllib-kerberos 0.2
.0urllib3 1.26
.2w3lib 1.22
.0wheel 0.36
.1zope.inte***ce 5.2
.0
2.2 查詢指定庫的版本
查詢指定庫的版本,使用的命令:pip show fake_useragent
在python3.x版本中可以使用pip也可以使用pip3,同樣的效果。
ps:文中是很簡單的一些操作 ,僅用於自己學習過程中的一些筆記而已,也算不上啥教程,也別和我抬槓。
寫自己的筆記,讓別人去說吧。咳咳…
Python 安裝第三方庫
1 pip工具 pip安裝目錄 c python34 scripts 確認pip是否安裝,執行 pip v c python34 scripts pip v 顯示 pip 9.0.3 from c python34 lib site packages python 3.4 安裝第三方庫 pyexce...
Python安裝第三方庫
pip install 安裝庫名 可能存在的問題 對於過大的第三方庫,建議使用第 二 三種方法 安裝執行cmd,開啟命令列介面,cd c python3 scripts 進入到scripts資料夾下。複製第三方庫包的全部名字,例如 numpy 1.15.4 cp37 none win amd64.w...
python安裝第三方庫
開啟命令列,使用命令 pip install i pytest 其中,i 後面為國內映象路徑,最後為安裝的第三方庫名稱。安裝第三方庫時,只有出現successfully 才算安裝成功,如果出現黃色提示,則一般為pip版本過低,需要公升級,利用國內映象更新pip包的命令為 python m pip i...