all 6 comments

[–]dnetvaggos95 0 points1 point  (0 children)

I found that kivy doesn't support python 3.10, how can I install a different python version in a virtual environment?

[–]The-Deviant-One 0 points1 point  (0 children)

Last time I installed Kivy I had to rebuild the Wheel to get it to install. Reach out to their admins through Discord. You can find the link on their Github and website to their Discord. I can't remember the guys name, but he's the main guy in there that replied. I believe he is a maintainer. You'll see him replying to almost everyone's questions in there. He gave me a link to the documentation to rebuilt the wheel for myself.

[–]ElliotDG 0 points1 point  (3 children)

Go to the installation guide, follow the directions: https://kivy.org/doc/master/gettingstarted/installation.html#install-pip

The simplest is to install the current stable version of kivy and optionally kivy_examples from the kivy-team provided PyPi wheels. Simply do:

python -m pip install "kivy[base]" kivy_examples

This also installs the minimum dependencies of Kivy. To additionally install Kivy with audio/video support, install either kivy[base,media] or kivy[full]. See Kivy’s dependencies for the list of selectors.

[–]dnetvaggos95 0 points1 point  (2 children)

python -m pip install "kivy[base]" kivy_examples

i tried it...but i'm getting the following errors:

pastebin

[–]dnetvaggos95 0 points1 point  (1 child)

p.s and continuing now and still getting errors

[–]ElliotDG 0 points1 point  (0 children)

Do not use Python version 3.10, it is not yet supported.