Double-click on the downloaded qemegs disk image (qemegs-1.x.dmg)
and the simply move the "qemegs.app" (or "EMEGS
Qt-version.app" for 2.0) bundle to your application folder. This
bundle already includes Qt4 and a few other libraries you need.
Lapack and Blas should be part of your system by default, and are
not included.
Installing and configuring R
install.packages("reshape2")
install.packages("RSvgDevice")
install.packages("Rserve")
library(Rserve)
Rserve()
Although this is the way that I think it is supposed to work (and
works on Linux and Windows), on MAC I got the error
Fatal error: You have to add '--save',
'--no-save' or '--vanilla'
The other way to start Rserve is using the Terminal, and typing
the command
R CMD Rserve
Here I got the error
/Library/Frameworks/R.framework/Resources/bin/Rcmd:line62:
exec: Rserve: not found
but I could fix this by copying the Rserve executable to
the bin-directory as follows
sudo cp /Library/Frameworks/R.framework/Resources/library/Rserve/Rserve /Library/Frameworks/R.framework/Resources/bin/Rserve