How do you verify/check kivy version?

7stud picture 7stud · Dec 21, 2015 · Viewed 28k times · Source

This doesn't work:

$ kivy --version
Python 2.7.6

I've got Kivy.app installed, and it doesn't provide any version info either.

Answer

inclement picture inclement · Dec 21, 2015

The version is printed in kivy's default logger output, or you can get it in python with import kivy; print(kivy.__version__).