How to check the current python version in erpnext?

Hi,

I cannot find the python version of the erpnext from the about section of the website.

image

How can I find it?

Thanks in advance.

The About section only gives you the app versions and not Python. If you have the server access, why not use that instead for checking the Python version?

The ERPNext and Frappe versions you are using were written for Python 2. Python 3 compatibility was added in version 11, and the next major release will be Python 3 only.

1 Like

How to check the python version at the server level?

bench console
import sys
sys.version
4 Likes

python -V
python3 -V

In bench directory
./env/bin/python

1 Like