in reply to Re^2: Installing external libraries for perlbrew perl
in thread Installing external libraries for perlbrew perl

is /opt/local/bin in $PATH?
  • Comment on Re^3: Installing external libraries for perlbrew perl

Replies are listed 'Best First'.
Re^4: Installing external libraries for perlbrew perl
by bangor (Monk) on Dec 19, 2013 at 04:20 UTC
    Sorry for my ignorance but how can I find that out?
      Sorry for my ignorance but how can I find that out?

      Run: echo $PATH
      The output needs to include the location of gdlib-config - which, I'm assuming, is /opt/local/bin.

      If the location of the gdlib-config file is not specified in $PATH, then you need to add that location to $PATH:
      export PATH=/opt/local/bin:$PATH
      Cheers,
      Rob
        Thanks Rob, that did the trick - see my update above.