SWCAudioDaySoftwareUbuntu » History » Version 2

Version 1 (Steve Welburn, 2012-09-03 05:24 PM) → Version 2/15 (Steve Welburn, 2012-09-03 05:29 PM)

h1. SWC Audio Day Software - Ubuntu Installation SWCAudioDaySoftware

* Copied from Lion instructions... updating as progresses



h3. Installation under Ubuntu 12.04

<pre>sudo apt-get install readline</pre>

Unable to locate package readline

<pre>sudo apt-get install sqlite</pre>

Installed libsqlite0 and sqlite

<pre>sudo apt-get install libgdbm3 </pre>

libgdm3 is alrady the newest version

<pre>sudo apt-get install pkg-config</pre>

pkg-config is alrady the newest version

<pre>sudo apt-get install python</pre>

python is alrady the newest version

h5. Testing (in python)

<pre>
python
</pre>

Gives the python command prompt

<pre>
Python 2.7.3 (default, Aug 1 2012, 05:16:07)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information
</pre>

To leave python
<pre>
exit()
</pre>

h3. Installation under OSX 10.7 (Lion)

(assuming homebrew is already installed)

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

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

h4. Numpy

<pre>
pip install numpy
</pre>

h5. Testing (in python)

<pre>
import numpy
print numpy.__version__
print numpy.__file__
quit()
</pre>

You should get numpy version 1.6.2 and a file starting with a path @/usr/local/Cellar/python/2.7.3/...@

h4. Scipy

<pre>
brew install gfortran
pip install scipy
</pre>

h5. Testing (in python)

<pre>
import scipy
print scipy.__version__
print scipy.__file__
quit()
</pre>

You should get scipy version 0.10.1 and a file starting with a path @/usr/local/Cellar/python/2.7.3/...@

h4. Matplotlib

(couldn't get matplotlib installed using pip; had to download and manually install it instead)

<pre>
git clone https://github.com/matplotlib/matplotlib.git
cd matplotlib
python setup.py build
python setup.py install
</pre>

h5. Testing (in Python)

<pre>
import matplotlib
print matplotlib.__version__
print matplotlib.__file__
quit()
</pre>

You should get matplotlib version 1.2.x and a file starting with a path @/usr/local/Cellar/python/2.7.3/...@

h4. Audiolab

<pre>
pip install scikits.audiolab
</pre>

h5. Testing (in Python)

<pre>
import scikits.audiolab
print scikits.audiolab.__version__
print scikits.audiolab.__file__
quit()
</pre>

You should get scikits.audiolab version 0.11.0 and a file starting with a path @/usr/local/Cellar/python/2.7.3/...@