SWCAudioDaySoftware » History » Version 3

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

h1. SWCAudioDaySoftware

h3. Installation under OSX 10.7 (Lion)

(assuming homebrew is already installed)

<pre>brew &lt;pre&gt; brew install readline sqlite gdbm pkg-config
brew install python --framework --universal</pre>

(add this to ~/.bash_profile)
<pre>export 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
</pre>


* Numpy
<pre>


pip install numpy
</pre>


** 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