I am trying to install ImageMagick using the official instructions.
I have executed the three export commands:
export MAGICK_HOME="$HOME/ImageMagick-6.9.2" export PATH="$MAGICK_HOME/bin:$PATH" export DYLD_LIBRARY_PATH="$MAGICK_HOME/lib/"
And I can make it to the end where I can execute:
> convert logo: logo.gif
> identify logo.gif
> display logo.gif
My $PATH shows imagemagick. However, when I close the terminal and re-examine $PATH, the imagemagick directory is missing.
What am I doing wrong? We isn't my $PATH saving after the exports?