Julin Maloof <[EMAIL PROTECTED]> writes: > 1) I note that there is a binary of Rgraphviz now available. Is > that usable? And if so, where is it expecting graphviz to be > installed? when I try it with graphviz installed in either /usr > or /usr/local I get
I think Simon is the one building the Rgraphviz binary so he might be able to shed some light on where it is expected to work (with which version of R and whether a graphviz lib is required or not). > 2) I have also tried installing Rgraphviz from source. In that case I get > >>> Sys.putenv(LD_LIBRARY_PATH="/usr/local/lib/graphviz") >> trying URL >> 'http://www.bioconductor.org/packages/bioc/stable/src/contrib/Rgraphviz_1.8.0.tar.gz' >> Content type 'application/x-gzip' length 1666191 bytes >> opened URL >> ================================================== >> downloaded 1627Kb >> >> * Installing *source* package 'Rgraphviz' ... >> checking for graphviz... >> The downloaded packages are in >> /private/tmp/RtmpK9aZCF/downloaded_packages >> checking for dotneato-config... not found >> checking for pkg-config... no If you installed a recent graphviz, then there is no dotneat-config script. Instead, for the autoconf tools to work, you need the pkg-config program installed and PKG_CONFIG_PATH set appropriately (/blah/lib/pkgconfig). But it should also work to pass the --with-graphviz configure option. Something like: R CMD INSTALL --configure-args='--with-graphviz=/blah/graphviz' \ Rgraphviz_x.y.z.tar.gz So I would try this first. I would also try with the devel version of Rgraphviz. cheers, + seth _______________________________________________ R-SIG-Mac mailing list [email protected] https://stat.ethz.ch/mailman/listinfo/r-sig-mac
