SWCAudioDaySoftware » History » Version 2

Version 1 (Luis Figueira, 2012-09-03 03:36 PM) → Version 2/8 (Luis Figueira, 2012-09-03 03:37 PM)

h1. SWCAudioDaySoftware

h3.


Installation under OSX 10.7 (Lion)

(assuming homebrew hombres is already installed)

<pre> brew install readline sqlite gdbm pkg-config
brew install python --framework --universal</pre> --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