Today I learned how to install Kivy using Pipenv. It was easier than I had thought.
Kivy is a Python GUI Framework. Its UI is modern and very cool. It is released under the MIT License.
Environment
My environment was listed below.
- macOS Catalina 10.15.5
- pipenv: stable 2018.11.26
- Python 3.7.4
Installing Kivy
Following the official installation guides, I run this command. And, the installation was succeeded.
$ pipenv install kivy
Installation Confirmation
To confirm the installation, I copied this Pong Game Tutorial codes and run them.
I could move the bars on left and right and hit the ball.
The Kivy installation was completed.
Top comments (0)