How to find the version number of Django-CMS
Asked Answered
H

3

8

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!

Heads answered 6/10, 2012 at 22:14 Comment(0)
B
10
from cms import __version__
print __version__
Blackwell answered 9/11, 2012 at 11:18 Comment(0)
D
2

This works for me on Python 3.3.4

    from cms import __version__
    print (__version__)
Disjunctive answered 2/3, 2014 at 23:23 Comment(0)
S
-1

You can just do

python manage.py version

if you are using Linux it will be

./manage.py version
Stook answered 27/4, 2020 at 16:54 Comment(1)
Works great for Django, but this (very, very old question) was about Django CMS. =)Heads

© 2022 - 2024 — McMap. All rights reserved.