我对CherryPy很新。我想知道我的机器中安装了哪个CherryPy版本。如何在终端获得CherryPy版本?
谢谢你教育我。
python -c "import cherrypy;print cherrypy.__version__"
是
dpkg -l | grep -i cherrypy
你在找什么?
在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
Python 3语法:
python -c "import cherrypy;print(cherrypy.__version__)"