mkoistinen
mkoistinen

Reputation: 7773

How to find the version number of Django-CMS

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

Answers (3)

Kirubel Tadesse
Kirubel Tadesse

Reputation: 91

You can just do

python manage.py version

if you are using Linux it will be

./manage.py version

Upvotes: -1

Lothilius
Lothilius

Reputation: 178

This works for me on Python 3.3.4

    from cms import __version__
    print (__version__)

Upvotes: 2

iurii
iurii

Reputation: 2697

from cms import __version__
print __version__

Upvotes: 10

Related Questions