Reputation: 7773
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!
Upvotes: 8
Views: 4814
Reputation: 91
You can just do
python manage.py version
if you are using Linux it will be
./manage.py version
Upvotes: -1
Reputation: 178
This works for me on Python 3.3.4
from cms import __version__
print (__version__)
Upvotes: 2