SWCAudioDaySoftware » History » Version 4
Version 3 (Luis Figueira, 2012-09-03 03:37 PM) → Version 4/8 (Luis Figueira, 2012-09-03 03:38 PM)
h1. SWCAudioDaySoftware
h3. Installation under OSX 10.7 (Lion)
(assuming homebrew is already installed)
<pre>brew install readline sqlite gdbm pkg-config
brew install python --framework --universal</pre>
(add this to ~/.bash_profile)
@@export <pre>export PATH=/usr/local/share/python:$PATH
<pre>
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
h3. Installation under OSX 10.7 (Lion)
(assuming homebrew is already installed)
<pre>brew install readline sqlite gdbm pkg-config
brew install python --framework --universal</pre>
(add this to ~/.bash_profile)
@@export <pre>export PATH=/usr/local/share/python:$PATH
<pre>
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