python中查看已安装三方库的版本号
有时候需要对已经安装的第三方库查看一下版本号,本文记录如下内容:python的版本号三方库的版本号文中的操作是在cmd中进行的操作,当然也可以在其它的控制台中进行。1. python的版本号使用命令: python就可C:\Users\Administrator>pythonPython 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 22:45:29) [
·
有时候需要对已经安装的第三方库查看一下版本号,本文记录如下内容:
- python的版本号
- 三方库的版本号
文中的操作是在cmd中进行的操作,当然也可以在其它的控制台中进行。
1. python的版本号
使用命令: python就可
C:\Users\Administrator>python
Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 22:45:29) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
2. 三方库的版本号分为两种查找方式
2.1 查找所有
使用的命令 pip list
C:\Users\Administrator>pip list
Package Version
---------------- ---------
attrs 20.3.0
Automat 20.2.0
beautifulsoup4 4.9.3
certifi 2020.12.5
cffi 1.14.4
chardet 3.0.4
constantly 15.1.0
cryptography 3.3.1
cssselect 1.1.0
fake-useragent 0.1.11
hyperlink 20.0.1
idna 2.10
incremental 17.5.0
itemadapter 0.2.0
itemloaders 1.0.4
jmespath 0.10.0
lxml 4.6.2
parsel 1.6.0
pip 20.3.1
Protego 0.1.16
pyasn1 0.4.8
pyasn1-modules 0.2.8
pycparser 2.20
PyDispatcher 2.0.5
PyHamcrest 2.0.2
pyOpenSSL 20.0.0
pyquery 1.4.3
queuelib 1.5.0
requests 2.25.0
Scrapy 2.4.1
service-identity 18.1.0
setuptools 41.2.0
six 1.15.0
soupsieve 2.0.1
Twisted 20.3.0
urllib-kerberos 0.2.0
urllib3 1.26.2
w3lib 1.22.0
wheel 0.36.1
zope.interface 5.2.0
2.2 查找指定库的版本
查找指定库的版本,使用的命令:pip show fake_useragent
Name: fake-useragent
Version: 0.1.11
Summary: Up to date simple useragent faker with real world database
Home-page: https://github.com/hellysmile/fake-useragent
Author: hellysmile@gmail.com
Author-email: hellysmile@gmail.com
License: UNKNOWN
Location: d:\python38-32\lib\site-packages
Requires:
Required-by:
在python3.x版本中可以使用pip也可以使用pip3,同样的效果。
PS:文中是很简单的一些操作 ,仅用于自己学习过程中的一些笔记而已,也算不上啥教程,也别和我抬杠。
写自己的笔记,让别人去说吧。咳咳…
更多推荐
已为社区贡献2条内容
所有评论(0)