Skip to content

Instantly share code, notes, and snippets.

@LilyFoote
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LilyFoote/472118843433e981886d to your computer and use it in GitHub Desktop.
Save LilyFoote/472118843433e981886d to your computer and use it in GitHub Desktop.
Install kivy in a virtualenv without site-packages using wheel
pip install wheel
hg clone https://bitbucket.org/pygame/pygame
cd pygame
pip wheel .
cd
git clone git@github.com:kivy/kivy.git
git checkout 1.8.0
cd kivy
make force
pip wheel .
mkvirtualenv kivy-env
pip install kivy
pip install pygame --pre
[install]
find-links=/home/ian/.pip/wheels
[wheel]
wheel-dir=/home/ian/.pip/wheels
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment