Saidul Islam
Saidul Islam

Reputation: 1

Unable to get a Window, abort for kivy

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

Answers (1)

Amesh Jayaweera
Amesh Jayaweera

Reputation: 226

It is highly recommended to use virtual environment for kivy

  1. Setup terminal and pip

python -m pip install --upgrade pip setuptools virtualenv

  1. Create a virtual environment inside the root directory of your project

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

Related Questions