OpenMx to R 2.14.1
Posted on

Forums
Attempting to download to R 2.14.1, I receive the following message. New to R, so I'm pretty sure it's a simple error on my part...
> source('http://openmx.psyc.virginia.edu/getOpenMx.R')
Error in file(filename, "r", encoding = encoding) :
cannot open the connection
In addition: Warning message:
In file(filename, "r", encoding = encoding) :
unable to resolve 'openmx.psyc.virginia.edu'
Any help would be much appreciated.
Thanks
What platform are you running
Log in or register to post comments
If on Windows
?setInternet2
and take it from there.
Log in or register to post comments
installation problem
try URL’http://openmx.psyc.virginia.edu/packages/bin/windows/contrib/2.14/OpenMx_1.2.0-1926.zip'
Content type 'application/zip' length 2308041 bytes (2.2 Mb)
openURL
downloaded 2.2 Mb
package ‘OpenMx’ successfully unpacked and MD5 sums checked
The downloaded packages are in
C:\Documents and Settings\Administrator\Local Settings\Temp\RtmpyQoe2T\downloaded_packages
No other output and no window presented to ask me to install openMX.
My platform: windows, R 2.14.2.
Log in or register to post comments
In reply to installation problem by rhh1984
re:installation problem
If that doesn't seem to work try this alternate installation command:
Instead of:
> source('http://openmx.psyc.virginia.edu/getOpenMx.R')
try:
> repos <- c('http://openmx.psyc.virginia.edu/packages/')
> install.packages(pkgs=c('OpenMx'), repos=repos)
Log in or register to post comments
In reply to re:installation problem by rgore
re: installation problem
Log in or register to post comments
Only the sequential
library(OpenMx)
then the OpenMx library should load.Log in or register to post comments