On 2016년 05월 30일 17:32, IOhannes m zmoelnig wrote:
the hacky solution is to just copy/symlink the .pd_linux files from extra/pd~/.libs/ to extra/pd~/
a *better* solution is to do run
make install
but tell it to install into some non-official place, e.g:$ make install DESTDIR=~/pd-0.47-0 prefix=/
which should "install" Pd into your home-directory (without touching your system-wide installation; also note the lack of 'sudo')
then you can start Pd with:
$ ~/pd-0.47-0/bin/pd
Beautiful. This works. <3 IOhannes.