Ahmed Al-haddad
Ahmed Al-haddad

Reputation: 833

Kivy is not compatible with Cython?

I decided to choose kivy to to help me design my gui applications, but I am facing this problem; I installed cython 0.22 and everytime I try to install kivy I get this (with a lot of other lines):

ImportError: Incompatible Cython Version

Is it because of Cython or Kivy?!

Upvotes: 0

Views: 1253

Answers (1)

inclement
inclement

Reputation: 29488

Kivy's latest release is not compatible with cython 0.22. You can fix it by installing cython 0.21, or by using the master branch and merging this PR.

You should get a message about this as part of the compilation process when it fails.

Upvotes: 2

Related Questions