'OpenMx' is not available
install.packages(pkgs=c('OpenMx'), repos=repos)
Warning: unable to access index for repository http://openmx.psyc.virginia.edu/...[redacted]
Warning message:
In getDependencies(pkgs, dependencies, available, lib) :
package ‘OpenMx’ is not available
OpenMx is not installed, as checked by installed.packages(). I tried it using 32-bit R and 64-bit R. Same warning in both. It seems OpenMx isn't there?? Any help would be appreciated...
Here's my info:
> R.Version()
$platform
[1] "x86_64-apple-darwin9.8.0"
$arch
[1] "x86_64"
$os
[1] "darwin9.8.0"
$system
[1] "x86_64, darwin9.8.0"
$status
[1] ""
$major
[1] "2"
$minor
[1] "9.2"
$year
[1] "2009"
$month
[1] "08"
$day
[1] "24"
$`svn rev`
[1] "49384"
$language
[1] "R"
$version.string
[1] "R version 2.9.2 (2009-08-24)"
OK, I installed it manually
and then using install.packages():
install.packages("/Users/matthewkeller/Downloads/OpenMx_0.1.3-776.tgz",repos=NULL)
Seems to be fine now.
Log in or register to post comments
In reply to OK, I installed it manually by mkeller
Thanks for your post Matt. I
But when i try to load the package using the function "library(OpenMx)", i get the error message: "Error in library(OpenMx) : 'OpenMx' is not a valid installed package"
I can also see 'OpenMx' in the Package Manager, but alas it won't load from there either.
Have i forgotten to do something basic to complete the package installation? I'm running OS X 10.5.7 and R version 2.9.2. Help from anyone is appreciated..
Log in or register to post comments
In reply to Thanks for your post Matt. I by tyork
Hmm, the latest version is
Log in or register to post comments
In reply to Hmm, the latest version is by mspiegel
Sorry, i didn't mention that
Log in or register to post comments
In reply to Thanks for your post Matt. I by tyork
Are you on a PPC machine or
I just tried it here on OS X 10.5.8 / R 2.9.2 / Intel and the install ran fine.
Have you checked whether you have write permissions on the full directory tree for R? Sometimes on OS-X updates that gets mucked with. This will give you permissions again:
sudo chmod -R ug+rwX /Library/Frameworks/R.framework
Log in or register to post comments
In reply to Are you on a PPC machine or by Steve
I verified that i do have
Any additional suggestions would be greatly appreciated.
> source('iknowwhere')
trying URL 'http://www.ibiblio.org/pub/languages/R/CRAN/bin/macosx/universal/contrib/2.9/snowfall_1.70.tgz'
Content type 'application/x-gzip' length 221764 bytes (216 Kb)
opened URL
==================================================
downloaded 216 Kb
The downloaded packages are in
/var/folders/5l/5l9k4BpLHjyWjbId9rS8d++++TI/-Tmp-//RtmpVTwFgS/downloaded_packages
trying URL 'http://XXX/OpenMx_0.1.5-851.tgz'
Content type 'application/x-gzip' length 816445 bytes (797 Kb)
opened URL
==================================================
downloaded 797 Kb
The downloaded packages are in
/var/folders/5l/5l9k4BpLHjyWjbId9rS8d++++TI/-Tmp-//RtmpVTwFgS/downloaded_packages
> library(OpenMx)
Error in dyn.load(file, DLLpath = DLLpath, ...) :
unable to load shared library '/Library/Frameworks/R.framework/Resources/library/OpenMx/libs/i386/OpenMx.so':
dlopen(/Library/Frameworks/R.framework/Resources/library/OpenMx/libs/i386/OpenMx.so, 6): Library not loaded: /usr/local/lib/libgfortran.2.dylib
Referenced from: /Library/Frameworks/R.framework/Resources/library/OpenMx/libs/i386/OpenMx.so
Reason: image not found
Error in library(OpenMx) : .First.lib failed for 'OpenMx'
Log in or register to post comments
In reply to I verified that i do have by tyork
Copy/paste the results of ls
Log in or register to post comments
In reply to Copy/paste the results of ls by mspiegel
timothy-yorks-macbook-pro:~
total 24640
drwxr-xr-x 8 root wheel 272 Sep 30 11:09 Tktable2.9
-rwxr-xr-x 1 root wheel 314776 Jan 8 2008 libfuse.0.0.0.dylib
-rwxr-xr-x 1 root wheel 314776 Jan 8 2008 libfuse.0.dylib
-rw-r--r-- 1 root wheel 1024152 Jan 8 2008 libfuse.a
-rwxr-xr-x 1 root wheel 314776 Jan 8 2008 libfuse.dylib
-rwxr-xr-x 1 root wheel 804 Jan 8 2008 libfuse.la
-r-xr-xr-x 1 root wheel 4820229 Oct 21 2008 libtcl8.5.dylib
-rw-r--r-- 1 root wheel 11072 Oct 21 2008 libtclstub8.5.a
-rwxr-xr-x 1 root wheel 5602072 Oct 21 2008 libtk8.5.dylib
-rw-r--r-- 1 root wheel 14304 Oct 21 2008 libtkstub8.5.a
-rwxr-xr-x 1 root wheel 38900 Jan 8 2008 libulockmgr.0.0.0.dylib
-rwxr-xr-x 1 root wheel 38900 Jan 8 2008 libulockmgr.0.dylib
-rw-r--r-- 1 root wheel 41168 Jan 8 2008 libulockmgr.a
-rwxr-xr-x 1 root wheel 38900 Jan 8 2008 libulockmgr.dylib
-rwxr-xr-x 1 root wheel 832 Jan 8 2008 libulockmgr.la
drwxr-xr-x 3 root wheel 102 Mar 27 2009 pkgconfig
drwxr-xr-x 5 root wheel 170 Oct 21 2008 tcl8
drwxr-xr-x 18 root wheel 612 Sep 30 11:09 tcl8.5
-rw-r--r-- 1 root wheel 7730 Oct 21 2008 tclConfig.sh
drwxr-xr-x 37 root wheel 1258 Sep 30 11:09 tk8.5
-rw-r--r-- 1 root wheel 4017 Oct 21 2008 tkConfig.sh
timothy-yorks-macbook-pro:~ tpyork$ ls -l /usr/local/gfortran/lib
ls: /usr/local/gfortran/lib: No such file or directory
Log in or register to post comments
In reply to timothy-yorks-macbook-pro:~ by tyork
Copy/paste the results of
Log in or register to post comments
In reply to Copy/paste the results of by mspiegel
timothy-yorks-macbook-pro:~
/Library/Frameworks/R.framework/Versions/2.9/Resources/lib/libgfortran.2.dylib
Log in or register to post comments
In reply to timothy-yorks-macbook-pro:~ by tyork
Try this: cd
And then try loading the OpenMx library in R.
Log in or register to post comments
In reply to Try this: cd by mspiegel
That worked! Any chance,
Many thanks for fixing the problem !!!
Log in or register to post comments
In reply to That worked! Any chance, by tyork
I was hoping that someone
Log in or register to post comments
In reply to I was hoping that someone by mspiegel
Good catch! I'm not sure why,
I'm not sure why, but my guess is that R tried to create a symlink at /usr/local/lib and failed without an error. Again, it is a mystery why R should want to do this rather than just point to its own dylib.
Log in or register to post comments
In reply to That worked! Any chance, by tyork
Not sure why this is
Log in or register to post comments
Opened a ticket:
Log in or register to post comments
I found the solution on my
Log in or register to post comments
I've just come across OpenMx
I've just come across OpenMx and am very new to SEM. I'm doing a PhD and will need to do some heritability analyses on twins. As I hadn't thrown myself into learning Mx yet, I thought OpenMx might be a better way to go because of its integration with R and active user community.
But I can't get it to install!
I'm getting the exact same error as the first poster. I'm using a Macbook Pro with Snow Leopard and I just re-installed R (2.9.2) last night (package version) so that I had 32 bit and 64 bit versions (I also want to use the JGR GUI and you need 64 bit R for that). I've read through this thread and tried the various solutions. I didn't have gfortran installed and have since done that and added it to my user Path, but I still receive the same error when trying to install OpenMx.
Any other ideas? I want to be able to use and learn this.
Thanks,
Paul
P.S.
Some details of R installation:
> R.Version()
$platform
[1] "i386-apple-darwin9.8.0"
$arch
[1] "i386"
$os
[1] "darwin9.8.0"
$system
[1] "i386, darwin9.8.0"
$status
[1] ""
$major
[1] "2"
$minor
[1] "9.2"
$year
[1] "2009"
$month
[1] "08"
$day
[1] "24"
$`svn rev`
[1] "49384"
$language
[1] "R"
$version.string
[1] "R version 2.9.2 (2009-08-24)"
Log in or register to post comments
In reply to I've just come across OpenMx by pgseye
Hi, Paul, we'll do our best
Hi, Paul, we'll do our best to get things working for you. Can you copy and paste the exact error you are getting? Also, did you try this at the terminal:
Let us know.
Log in or register to post comments
In reply to Hi, Paul, we'll do our best by Jeff
Hi Jeff, This is terminal
Hi Jeff,
This is terminal output based on what you've suggested:
This is error I receive in R:
> source('http://openmx.psyc.virginia.edu/getOpenMx.R')
Warning: unable to access index for repository http://openmx.psyc.virginia.edu/packages/bin/macosx/leopard/contrib/2.9
Warning message: In getDependencies(pkgs, dependencies, available, lib) : package ‘OpenMx’ is not available
Any help you can offer would be greatly appreciated - I'm nor particularly savvy with the behind-the-scenes working of either R or Terminal.
Many Thanks,
Paul
P.S. - The other thing (and I don't know whether this is of relevance) is that OpenMX doesn't show up as a package to install when I browse the CRAN library.
Log in or register to post comments
In reply to Hi Jeff, This is terminal by pgseye
Ah, the problem is that it's
source('http://openmx.psyc.virginia.edu/getOpenMx.R');
And you're right: OpenMx doesn't show up as a package on CRAN. CRAN is just a host for packages and, currently, we're hosting our own packages. The above command actually just runs the installer, changing the host from CRAN to our server while you install the OpenMx package.
Let me know if that works. If it doesn't, again, copy and paste the error.
Log in or register to post comments
In reply to Ah, the problem is that it's by Jeff
Great Jeff. That does indeed
That does indeed work. Now I can start learning about it.
Many thanks,
Paul
Log in or register to post comments