Skip to content

Instantly share code, notes, and snippets.

@rodnaxel
Last active August 18, 2020 20:38
Show Gist options
  • Save rodnaxel/822fae7e8414dcb7616e068a69103060 to your computer and use it in GitHub Desktop.
Save rodnaxel/822fae7e8414dcb7616e068a69103060 to your computer and use it in GitHub Desktop.
Install Kivy on Ubuntu 18.04 (python 3.6)
apt-get install python3-pip
apt-get install cython3 python3-dev
apt-get install libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev
python3.6 -m pip3 install git+https://github.com/kivy/kivy.git@master
apt-get install python3-kivy-examples
@somethis
Copy link

somethis commented Aug 18, 2020

I had to adjust line 4 for a different python version, a different pip version and sudo-rights. This might help if the above code doesn't work
sudo python3.8 -m pip install git+https://github.com/kivy/kivy.git@master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment