technomancy / grenchman

Sorry about the name
GNU General Public License v3.0
217 stars 8 forks source link

Installation on OSX #20

Closed n1k0 closed 10 years ago

n1k0 commented 10 years ago

I'm trying to install grenchman on OSX ML:

$ wget https://grenchman.s3.amazonaws.com/downloads/grench-0.2.0-mac
$ chmod +x grench-0.2.0-mac
$ mv grench-0.2.0-mac /usr/local/bin/grench
$ grench
dyld: Library not loaded: /usr/local/opt/libffi/lib/libffi.6.dylib
  Referenced from: /usr/local/bin/grench
  Reason: image not found
[1]    20224 trace trap  grench

Am I missing something?

Thanks :)

willgorman commented 10 years ago

I was getting this as well and saw on the download page that it mentioned a dependency on libffi and libreadline-dev. I ran brew install libffi and it resolved the issue.

n1k0 commented 10 years ago

That solved the issue, really I could have thought about it ;) Thanks.