Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在向已经安装了 Django 和 Django-CMS 的服务器添加一个新站点。如何检测已安装的 Django-CMS 的版本号?
谢谢!
from cms import __version__ print __version__
这适用于 Python 3.3.4
from cms import __version__ print (__version__)
你可以做
python manage.py version
如果您使用的是 Linux,它将是
./manage.py version