Last active
April 24, 2016 05:23
-
-
Save pwalsh/5691534 to your computer and use it in GitHub Desktop.
A short gist explaining how to compile pyo - the powerful Audio/DSP library for Python, on Mac OS X. The instructions are specifically for installing pyo with a brewed Python install - not with Mac OS X system Python.
This file contains hidden or 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
# using brew installed Python | |
brew install portaudio portmidi libsndfile liblo jack | |
brew link portaudio portmidi libsndfile liblo | |
cd ~/Sites/tmp | |
svn checkout http://pyo.googlecode.com/svn/trunk/ pyo-read-only | |
cd pyo-read-only | |
python setup.py install --use-coreaudio --use-jack --use-double | |
cd ../ | |
sudo rm -r pyo-read-only |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment