Reputation: 135
I am currently on python-3.9 (I dont know whether it is supported by kivy if not please let me know how which version is supported by kivy) I bascially ran
pip install kivy
and dont know what to know. I installed all dependencies for kivy needed and what should i do know??
TQ
Upvotes: 0
Views: 3496
Reputation: 627
at this moment up to Python 3.7 is supported
I use Kivy 1.11 on Windows and Linux with Python 3.7
Kivy installation is pretty difficult so I don't recommend using the newer Python versions as there are relatively few changes above Python 3.7
Upvotes: 0
Reputation: 2914
Try to run:
pip install pipwin
pipwin install kivy
Pipwin
has unofficial packages compiled for Windows.
Upvotes: 1
Reputation: 31
You can try with below instructions Installed on windows 10
Upvotes: 0
Reputation: 62
please read the instructions from the kivy documentation clearly, https://kivy.org/doc/stable/installation/installation-windows.html. if you are using pip for installing. please do read about the manual installation of dependencies. I suggest you to use conda prompt (Anaconda Navigator) the first section of documentation or the command below will be enough
conda install kivy -c conda-forge
Upvotes: 1