Rcmdr Launch Error in Yosemite (Os X 10.10)

Rcmdr launch error in Yosemite (OS X 10.10)

Execute the following in a terminal window:

locate libXft.2.dylib

or do it from an R console:

system("locate libXft.2.dylib")

On my Yosemite install it's in /opt/X11/lib/libXft.2.dylib.

If your setup is similar, then:

sudo ln -s /opt/X11 /usr/X11

should help fix this temporarily, but I'd keep looking for a Yosemite R package (since that will accommodate all the changes Apple made to the filesystem structure).

Of note: On my work Mac (Mavericks) this symlink is already there.

Launch app at login in OS X 10.10 Yosemite

The website you mentioned is a very good approach. It seemes over-engineered, but it is quite simple to implement. I used this idea myself and it is ok for the Mac App Store. You should give it a try, if you don't like it, you can still look for something else

Mysql won't start after upgrading Mac OS X Yosemite (Mac OS 10.10)

I haven't yet updated to Yosemite yet but I had this link saved when I do:

Get Apache, MySQL, PHP and phpMyAdmin working on OSX 10.10 Yosemite

This specific line may do some good:

sudo ln -s /tmp/mysql.sock /var/mysql/mysql.sock

But check the whole post and let me know if it helps!

Good luck!

How do I get RCurl to connect to POST SSL on OS X Yosemite?

Figured it out!

First, I installed brew from homebrew:

brew install --with-libressl curl

Then, I copied the curl-config in place:

sudo cp /usr/bin/curl-config /usr/bin/curl-config.bak
sudo cp /usr/local/opt/curl/bin/curl-config /usr/bin/curl-config

Then, I reinstalled RCurl:

install.packages("RCurl", type="source")

And it worked again.



Related Topics



Leave a reply



Submit