Last active
August 29, 2015 14:02
-
-
Save LilyFoote/472118843433e981886d to your computer and use it in GitHub Desktop.
Install kivy in a virtualenv without site-packages using wheel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install wheel | |
hg clone https://bitbucket.org/pygame/pygame | |
cd pygame | |
pip wheel . | |
cd | |
git clone [email protected]:kivy/kivy.git | |
git checkout 1.8.0 | |
cd kivy | |
make force | |
pip wheel . | |
mkvirtualenv kivy-env | |
pip install kivy | |
pip install pygame --pre |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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