Monday, December 23, 2019

Quick Set Up Guide for Installing Pure Data + Gem on Linux

1) download source code from http://msp.ucsd.edu/software.html and extract

2) Open the terminal and install the libraries required to build pd:

sudo apt install build-essential automake autoconf libtool gettext libasound2-dev libjack-jackd2-dev make 

3) cd into source code directory:    

cd path/to/pd 

4) Generate configure script:   

./autogen.sh 

5). Configure Pd with JACK :   

./configure --enable-jack

6) Build by running:

 make

7) Install to default location ( /usr/local):

 sudo make install 

8) Run Pd from the command line using:

 pd

9) GEM - Unlike Pure Data, Gem in the repositories seems to be more up to date so probably doesn’t need to be compiled from source to get the latest version. To install Gem simply type:

 sudo apt install gem

10) To launch Pd with Gem loaded type:

 pd-gem

This should automatically add Gem to the startup preferences so that from now on you can just start Pd with:

 pd

and Gem will be automatically loaded. If not you can manually add: /usr/lib/pd/extra/Gem to the startup preferences

-------------------------------------------------------
Notes

* For Ubuntu / Debian based systems

* If you want to get remove an older version of PD before installing the new one type:

sudo apt-get --purge autoremove puredata-core

  * Pure data can also be downloaded from the ubuntu repositories via the command line with: sudo apt install puredata, however it probably won’t be the latest version.



No comments:

Post a Comment