I'm adding a new site to a server which already has Django & Django-CMS installed. How can I detect the version number of the installed Django-CMS?
Thanks!
I'm adding a new site to a server which already has Django & Django-CMS installed. How can I detect the version number of the installed Django-CMS?
Thanks!
This works for me on Python 3.3.4
from cms import __version__
print (__version__)
You can just do
python manage.py version
if you are using Linux it will be
./manage.py version
© 2022 - 2024 — McMap. All rights reserved.