Search code examples
kivy

How do you verify/check kivy version?


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.


Solution

  • The version is printed in kivy's default logger output, or you can get it in python with:

    python -c "import kivy; print(kivy.__version__)"