Page 1 of 1

Mac Mavericks install using MacPorts fails

Posted: 2015-06-28T06:12:03-07:00
by TAD
I successfully installed MacPorts in order to be able to use the command "sudo port install ImageMagick" suggested at http://www.imagemagick.org/script/binary-releases.php

However, on opening Terminal and running that command, I get the message, "Error: Port ImageMagick not found"

What have I missed?

Thanks, ---TAD.

Re: Mac Mavericks install using MacPorts fails

Posted: 2015-06-28T07:48:22-07:00
by pipitas
Try:

Code: Select all

sudo port selfupdate
sudo port list imagemagick
sudo port info imagemagick
(Strictly speaking, `sudo` is only required for the first command, and isn't required for the last two commands -- but I want to see if it is in your $PATH.)

Re: Mac Mavericks install using MacPorts fails

Posted: 2015-06-28T11:21:50-07:00
by TAD
Thank you!! This is what happened.

tad-pc_on_imac:~ tad$ sudo port selfupdate
Password:
---> Updating MacPorts base sources using rsync
MacPorts base version 2.3.3 installed,
MacPorts base version 2.3.3 downloaded.
---> Updating the ports tree
---> MacPorts base is already the latest version

The ports tree has been updated. To upgrade your installed ports, you should run
port upgrade outdated
tad-pc_on_imac:~ tad$ sudo port list imagemagick
ImageMagick @6.9.0-0 graphics/ImageMagick
tad-pc_on_imac:~ tad$ sudo port info imagemagick
Warning: xcodebuild exists but failed to execute
ImageMagick @6.9.0-0_1 (graphics, devel)
Variants: graphviz, lqr, pango, rsvg, universal, wmf, [+]x11

Description: ImageMagick is a robust collection of tools ...
tad-pc_on_imac:~ tad$ sudo port install ImageMagick
.
.
.
---> No broken files found.
tad-pc_on_imac:~ tad$ convert logo: logo.gif
tad-pc_on_imac:~ tad$ identify logo.gif
logo.gif GIF 640x480 640x480+0+0 8-bit sRGB 256c 28.6KB 0.000u 0:00.000
tad-pc_on_imac:~ tad$ display logo.gif

It worked!