Skip to content

Instantly share code, notes, and snippets.

@udiboy1209
Created November 8, 2016 20:01
Show Gist options
  • Save udiboy1209/60f08dbf4d6e90d23ac38d9a8f863c29 to your computer and use it in GitHub Desktop.
Save udiboy1209/60f08dbf4d6e90d23ac38d9a8f863c29 to your computer and use it in GitHub Desktop.
Installer script for kivent
#!/bin/bash
#####################################
#
# Installer script for kivent modules
# Author: Meet Udeshi
#
#####################################
############ CONFIG ###########
BRANCH='2.2-dev' # change to whichever you want
# Install cymunk for kivent_cymunk
pip install git+https://github.com/tito/cymunk
cd /tmp
git clone -b $BRANCH https://github.com/kivy/kivent
cd kivent/modules
pip install ./core
pip install ./cymunk
pip install ./particles
pip install ./projectiles
pip install ./maps
echo "Done installing kivent"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment