On 2015-12-01 02:16, William Huston wrote:
Check the help page on the [import] command.
or even better, read the error message and try to understand it :-)
/Users/schoolshoes/Library/Pd/unauthorized/grid.pd_darwin: dlopen(/Users/schoolshoes/Library/Pd/unauthorized/grid.pd_darwin, 10): Library not loaded: @executable_path/../../lib/libspeex.1.dylib Referenced from: /Users/schoolshoes/Library/Pd/unauthorized/grid.pd_darwin Reason: image not found
so it says that it cannot find an "image" for a file @executable_path/../../lib/libspeex.1.dylib referenced from grid.pd_darwin
with a bit of fantasy and/or computing experience, this translates to: "the grid-object depends on the libspeex library but you don't have that installed. you cannot load [grid] without a libspeex.dylib in the proper place."
the solution is to locate the file libspeex.1.dylib in your Pd-extended.app (it will be somewhere in Pd-extended.app/Contents/lib/ and place it into sthg like Pd-vanilla.app/Contents/lib/.
the proper solution for a distributable "unauthorized" package would be to make grid.pd_darwin look for the libspeex.dylib besides itself (rather than besides the Pd-executable).
fgmasdr IOhannes