Sage 5.3 in Mountain Lion asks for X11
When I attempt to use the animate
command in Sage 5.3 in Lion, the system asks for X11. What can I do to get animate
to work properly?
When I attempt to use the animate
command in Sage 5.3 in Lion, the system asks for X11. What can I do to get animate
to work properly?
(Do you mean Mountain Lion?)
Did you install TeX Live or Mac TeX on your machine before you upgraded the OS? If so, you have two choices: the easy way: try reinstalling. The other way, which is not quite as easy, but is much faster: run "gs" from the command line. Do you get the error message? If so, that's your problem, and to fix it, I think this will work:
$ ls -l /usr/local/bin/gs*
You should see a line
lrwxr-xr-x 1 root wheel 8 Oct 3 07:53 /usr/local/bin/gs@ -> gs-X11
If so, then do this:
$ sudo bash
$ cd /usr/local/bin
$ rm gs
$ ln -s gs-noX11 gs
$ exit
(You may have installed Mac TeX when you had X11 installed, in which case the program "gs" was created as a link pointing to /usr/local/bin/gs-X11
. The point is to change it so it points to /usr/local/bin/gs-noX11
instead, since when you upgraded the OS, X11 was removed.)
Great! The unix commands worked for me on one machine; on another, I happened to do the reinstallation. I'm glad at least one option worked for you.
Not an answer, but an addition to the question:
I get
Error: Neither ImageMagick nor ffmpeg appears to be installed. Saving an
animation to a GIF file or displaying an animation requires one of these
packages, so please install one of them and try again.
See www.imagemagick.org and www.ffmpeg.org for more information.
since my upgrade to Lion. Aargh. Anyway, you will probably need to find a way to get the convert
command in your PATH; perhaps right now it's only available in an X11 version on your computer. Unfortunately, the version they have seems to only be for Mountain Lion, so I hope someone else has an idea too (that said, I haven't tried that one yet, so perhaps it works).
I don't think that ImageMagick should depend on X11. But I'm not sure.
The easier way to get imagemagick installed on a mac is using homebrew (http://mxcl.github.com/homebrew/). Just follow the directions to get homebrew installed and then do `brew install imagemagick`. It doesn't depend on X11.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2012-10-10 11:19:37 +0100
Seen: 738 times
Last updated: Oct 10 '12