Hi Ranajay,
These problems suggest that there was an error in building and installing ImageMagic and the MEME Suite. Did you see any error messages or warnings? Did you run the tests after building the MEME Suite?
It might just be as simple as not updating your PATH environment variable after completing the installation.
You may want to consider using
MacPorts to install the MEME Suite. MacPorts is a widely used package manager for MacOS. Once you have MacPorts installed, installing the MEME Suite is pretty easy, and all the dependencies like Image Magick will automatically be handled. "See theQuick Install using
MacPorts (for macOS)" section of the
MEME Suite Installation guide. You also have the option of installing
Docker and using the
MEME Suite Docker image. Both of these avoid the hassle of having to build the MEME Suite from scratch, and we strongly recommend them if you aren't familiar with working on the command line. You do have to install MacPorts or Docker, but those are both standard Macintosh applications installations.
If you do want to build the MEME Suite from scratch here are some suggested troubleshooting steps:
Check on the installation of GhostScript (GhostScript is the only part of ImageMagick that the MEME Suite actually requires). Run
which -a gs
This should report the directory where GhostScript is installed. If GhostScript is not found by this command then the Image Magick build failed or it was installed in a non-standard location that is not included in your PATH environment variable. You may have to re-run the installation of GhostScript, double checking the build process for any warnings or error messages. If the build and installation was actually successful, but it was installed to a non-standard location, you may want to add that location to your PATH environment variable. Alternatively you can specify where the MEME Suite should find GhostScript by using the '---with-gs' option in the 'configure' command for MEME Suite. See the "Customizing configuration" section of the
MEME Suite Installation guide.
Rebuild the MEME Suite from scratch using these commands
make clean # Needed to clean up any partially completed steps of the build
configure <your configure options here>
make &> make.log # Build the software recording all messages in the file make.log
make test &> test.log # Run the tests to make sure the build succeeded.
If you encounter warnings or error messages you don't understand, forward the config.log, make.log, and test.log files to us. That will assist us in troubleshooting.