SWCAudioDaySoftware » History » Version 6
« Previous -
Version 6/8
(diff) -
Next » -
Current version
Luis Figueira, 2012-09-03 03:56 PM
SWCAudioDaySoftware¶
Installation under OSX 10.7 (Lion)¶
(assuming homebrew is already installed)
brew install readline sqlite gdbm pkg-config brew install python --framework --universal
(add this to ~/.bash_profile)export PATH=/usr/local/share/python:$PATH
cd /System/Library/Frameworks/Python.framework/Versions sudo rm Current ln -s /usr/local/Cellar/python/2.7.2/Frameworks/Python.framework/Versions/Current source ~/.bash_profile (or reload terminal) easy_install pip
Numpy¶
pip install numpy
Testing (in python)¶
import numpy print numpy.__version__ print numpy.__file__ quit()
Scipy¶
brew install gfortran pip install scipy
Testing (in python)¶
import scipy print scipy.__version__ print scipy.__file__ quit()
- Matplotlib
(couldn't get matplotlib installed using pip; had to download and manually install it instead)
git clone https://github.com/matplotlib/matplotlib.git cd matplotlib python setup.py build python setup.py install
- Audiolab
pip install scikits.audiolab