2014-02-22 23:56:07 +00:00
|
|
|
# Dependencies required by dejavu
|
|
|
|
|
|
|
|
* [`pyaudio`](http://people.csail.mit.edu/hubert/pyaudio/)
|
|
|
|
* [`ffmpeg`](https://github.com/FFmpeg/FFmpeg)
|
|
|
|
* [`pydub`](http://pydub.com/)
|
|
|
|
* [`numpy`](http://www.numpy.org/)
|
|
|
|
* [`scipy`](http://www.scipy.org/)
|
|
|
|
* [`matplotlib`](http://matplotlib.org/)
|
|
|
|
* [`MySQLdb`](http://mysql-python.sourceforge.net/MySQLdb.html)
|
|
|
|
|
|
|
|
## Dependency installation for Mac OS X
|
|
|
|
|
2014-03-05 06:28:34 +00:00
|
|
|
Tested on OS X Mavericks. An option is to install [Homebrew](http://brew.sh) and do the following:
|
2014-02-22 23:56:07 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
brew install portaudio
|
|
|
|
brew install ffmpeg
|
|
|
|
|
|
|
|
sudo easy_install pyaudio
|
|
|
|
sudo easy_install pydub
|
|
|
|
sudo easy_install numpy
|
|
|
|
sudo easy_install scipy
|
|
|
|
sudo easy_install matplotlib
|
|
|
|
sudo easy_install pip
|
|
|
|
|
|
|
|
sudo pip install MySQL-python
|
|
|
|
|
|
|
|
sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib
|
|
|
|
```
|
2014-03-05 06:28:34 +00:00
|
|
|
|
|
|
|
However installing `portaudio` and/or `ffmpeg` from source is also doable.
|