Reputation: 1
This is the error: [1]: https://i.sstatic.net/t7SCc.png
I have already seen and followed all answers in this site. But I am facing same problem😥😥
Upvotes: 0
Views: 44
Reputation: 226
It is highly recommended to use virtual environment for kivy
python -m pip install --upgrade pip setuptools virtualenv
python -m virtualenv kivy_venv
kivy_venv\Scripts\activate
source kivy_venv/Scripts/activate
After creating virtual env then install kivy on virtual env
For more details - https://kivy.org/doc/stable/gettingstarted/installation.html#install-pip
Upvotes: 1