如何获得CherryPy版本

问题描述 投票:13回答:4

我对CherryPy很新。我想知道我的机器中安装了哪个CherryPy版本。如何在终端获得CherryPy版本?

谢谢你教育我。

python ubuntu terminal cherrypy
4个回答
27
投票
python -c "import cherrypy;print cherrypy.__version__"

1
投票

dpkg -l | grep -i cherrypy

你在找什么?


0
投票

在ubuntu中,您只需要检查包版本:

apt-cache policy python-cherrypy3

例如,在我的系统中:

python-cherrypy3:
  Installed: 3.1.2-1
  Candidate: 3.1.2-1
  Version table:
 *** 3.1.2-1 0
        500 http://archive.ubuntu.com/ubuntu/ oneiric/universe amd64 Packages
        100 /var/lib/dpkg/status

0
投票

Python 3语法:

python -c "import cherrypy;print(cherrypy.__version__)"
© www.soinside.com 2019 - 2024. All rights reserved.