简体   繁体   中英

How to check which version of Python a Django site is using?

I can't believe this hasn't been asking on here before. Besides using a syntax error to make the debug screen appear in the browser, is there another way to check which version of Python a Django site is running?

Not that different from checking Python version from any Python program, https://docs.python.org/2/library/platform.html#platform.python_version

>>> from platform import python_version
>>> python_version()     # Read this value from e.g. a Django command, or a page 
'2.7.6'

# Or
>>> import sys
>>> sys.version_info   
sys.version_info(major=2, minor=7, micro=6, releaselevel='final', serial=0)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM