search for: xml2

Displaying 20 results from an estimated 95 matches for "xml2".

Did you mean: xml
2019 Jun 13
2
permission problems -xml2
Apologies if this is the incorrect place for this question.? New Debian user here (via WSL on Windows). I've been installing packages (using install.packages) in to /usr/local/lin/R/site-library without problem until I tried to install xml2. When installing it gives the error message: mv: cannot move '/usr/local/lib/R/site-library/00LOCK-xml2/00new/xml2' to '/usr/local/lib/R/site-library/xml2': Permission denied I've added myself to the staff group and other packages have installed without issue. For informatio...
2019 Jun 13
0
permission problems -xml2
...6/13/19 12:16 PM, Tim Taylor wrote: > Apologies if this is the incorrect place for this question.? New > Debian user here (via WSL on Windows). I've been installing packages > (using install.packages) in to /usr/local/lin/R/site-library without > problem until I tried to install xml2. When installing it gives the > error message: > > mv: cannot move '/usr/local/lib/R/site-library/00LOCK-xml2/00new/xml2' > to '/usr/local/lib/R/site-library/xml2': Permission denied > > I've added myself to the staff group and other packages have installed...
2011 Jul 23
2
xml2-config issues
...hether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E No ability to remove finalizers on externalptr objects in this verison of R checking for sed... /bin/sed checking for pkg-config... /usr/bin/pkg-config checking for xml2-config... no Cannot find xml2-config ERROR: configuration failed for package ‘XML’ * removing ‘/home/amathew/R/i686-pc-linux-gnu-library/2.13/XML’ The downloaded packages are in ‘/tmp/Rtmp2V4huR/downloaded_packages’ Warning message: In install.packages() : installation of package 'XML' h...
2011 Oct 19
1
Failed dependencies for libxslt-ruby on CentOS 6
...no checking for inflate() in -lz... yes checking for iconv_open() in -liconv... no checking for libiconv_open() in -liconv... no checking for libiconv_open() in -llibiconv... no checking for iconv_open() in -llibiconv... no checking for iconv_open() in -lc... yes checking for xmlXPtrNewRange() in -lxml2... yes checking for libxml/xmlversion.h... no checking for libxml/xmlversion.h in /opt/include/libxml2,/usr/local/include/libxml2,/usr/include/libxml2... yes checking for xsltApplyStylesheet() in -lxslt... yes checking for xslt.h... no checking for xslt.h in /opt/include/libxslt,/usr/local/include/...
2018 Feb 17
2
Problem installing libxml2 under Homebrew
i am trying to install xml2 from CRAN, and it is throwing an error that it cannot find the libxml2 library configuration. The thing is that pkg-config seems to be set up correctly: $ echo $PKG_CONFIG_PATH :/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig $ pkg-config --cflags --libs libxml-2.0 -I/u...
2017 Jun 22
2
Accessing Pointers
Hello, I am relatively new to R and would like to access the document my pointer is pointing to in the following line of code. Need some help. #install.packages('xml2') library('xml2') pg1 <- read_html("www.msn.com") str(pg1) ptr <- pg1[[2]] [[alternative HTML version deleted]]
2013 Sep 03
4
[LLVMdev] Adding a library to CMake deps
Hi folks, When cross-compiling LLVM to ARM, using CMake+Ninja, I realized that libxml2 depends on lzma, but the dependency is not explicit on the build.ninja file under the "build bin/c-index-test"'s LINK_LIBRARIES (which is the only one that cares about it). I couldn't find the place to add -llzma into the deps, and the only mention of libxml2 is in config-ix.cmak...
2011 Apr 25
2
Problem installing XML in Ubuntu 10.10
...s, Here's is info on what system I'm working on. > sessionInfo() R version 2.13.0 (2011-04-13) Platform: i686-pc-linux-gnu (32-bit) I'm trying to install the XML package. However, I end up with the following error message. > install.packages("XML") .... checking for xml2-config... no Cannot find xml2-config ERROR: configuration failed for package ‘XML’ * removing ‘/home/abraham/R/i686-pc-linux-gnu-library/2.13/XML’ The downloaded packages are in ‘/tmp/RtmpUsckPl/downloaded_packages’ Warning message: In install.packages() : installation of package 'XML' had...
2013 Sep 03
0
[LLVMdev] Adding a library to CMake deps
On 09/03/2013 02:13 PM, Renato Golin wrote: > Hi folks, > > When cross-compiling LLVM to ARM, using CMake+Ninja, I realized that > libxml2 depends on lzma, but the dependency is not explicit on the > build.ninja file under the "build bin/c-index-test"'s LINK_LIBRARIES > (which is the only one that cares about it). > > I couldn't find the place to add -llzma into the deps, and the only > mention of libx...
2018 Mar 22
0
how to add a child to a child in XML
...or XML_3.98-1.9) > library(XML) > ?newXMLNode You can see the same on line... https://www.rdocumentation.org/packages/XML/versions/3.98-1.9/topics/newXMLDoc You have dig in to find it. If you are just starting out with XML, you might want to spend some time comparison shopping with the xml2 package. https://www.rdocumentation.org/packages/xml2/versions/1.2.0 <https://www.rdocumentation.org/packages/xml2/versions/1.2.0> I like each one, and I use both XML and xml2 (not at the same time). I have been slowly migrating toward xml2 as I use more of the tidyverse stuff. Cheers, Ben...
2017 Jun 22
0
Accessing Pointers
..., at 12:52 PM, Lawrence Fomundam <lawfom at gmail.com> wrote: > > Hello, > > I am relatively new to R and would like to access the document my pointer "my pointer"? > is pointing to in the following line of code. Need some help. > > #install.packages('xml2') > library('xml2') > pg1 <- read_html("www.msn.com") Error: 'www.msn.com' does not exist in current working directory ('/Users/davidwinsemius'). > str(pg1) > ptr <- pg1[[2]] > > [[alternative HTML version deleted]] > > _____...
2018 Mar 22
2
how to add a child to a child in XML
Big thanks. newXMLNode works great. Wonder why it is not included in the documentation. There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Wednesday, March 21, 2018 6:18 PM To: Bond, Stephen Cc: r-help Subject: Re: [R] how to add a child to a child in XML Hi, XML doesn't use the `$` to access child nodes.
2018 Mar 22
1
how to add a child to a child in XML
...(for XML_3.98-1.9) > library(XML) > ?newXMLNode You can see the same on line... https://www.rdocumentation.org/packages/XML/versions/3.98-1.9/topics/newXMLDoc You have dig in to find it. If you are just starting out with XML, you might want to spend some time comparison shopping with the xml2 package. https://www.rdocumentation.org/packages/xml2/versions/1.2.0 I like each one, and I use both XML and xml2 (not at the same time). I have been slowly migrating toward xml2 as I use more of the tidyverse stuff. Cheers, Ben On Mar 22, 2018, at 9:19 AM, Bond, Stephen <Stephen.Bond at cibc...
2012 Jul 21
5
package XML does not load in R 2.15.1
...ll the XML package. Both commands: install.packages("XML:) install.packages("XML", dependencies = TRUE) give an error . The full installation script is below but the problem to my very inexperenced eye seems to be here: checking for pkg-config... /usr/bin/pkg-config checking for xml2-config... no Cannot find xml2-config ERROR: configuration failed for package ?XML? I seem to have libxml1 version 2.7.8defg.1ubuntu installed if this is relevent. Any suggestions would be gratefully received. Ubuntu 12.04 sessionInfo() R version 2.15.1 (2012-06-22) Platform: i686-pc-linux-gnu...
2017 Dec 18
1
Rcpp - Linking to DLL from another package?
...r Rcpp questions) > > On 18 December 2017 at 13:24, Stravs, Michael wrote: > | I am trying to make a package B that extends another package A. Package A uses Rcpp, and I want to extend a class X used there. Another, perhaps simpler example is the xslt package which is an extension for the xml2 package. The xml2 package exposes its object types (via ./inst/include/xml2_types.h) so that the xslt package get to the underlying libxml2 objects.
2006 Mar 06
5
Oracle XMLType data
Howdy folks, Has anyone had any luck getting Oracle''s XMLType to play nicely with Rails? According to the docs, it''s just a wrapper around CLOB. However the ruby-oci8 driver throws an exception about user defined types if you try to query a table with an XMLType column. Any pointers would be appreciated. Thanks, -wilig
2009 Sep 17
1
Load Error Using Mechanize Gem
Hi, I''m getting a "Could not open any of [xml2, xslt, exslt] (LoadError)" error when trying to run a simple Ruby program taken from the EXAMPLES.rdoc file of the Mechanize gem. The error is in this line of the Nokogiri module of libxml.rb: ffi_lib ''xml2'', ''xslt'', ''exslt'' Not sure i...
2002 Oct 12
1
XML package
There are some problems with XML under OS X, nothing serious, but manual intervention is required. 1. For some reason the package has problems matching up the proper include and lib files for xml or xml2. If I install a fresh libxml2 and point the environmental variables to it, it still complains about mismatched header and lib files, which suggests, perhaps, that the test in configure uses something system specific. It works if I point explicitly to the include files for xml1. Both xml1 and xml2...
2008 Oct 14
1
XML_1.98-0 fails to build on Debian Lenny with gcc 4.3.2 and R-beta 2.8.0
...executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for sed... /bin/sed checking for xml2-config... no Cannot find xml2-config ERROR: configuration failed for package 'XML' ** Removing '/home/mkimpel/R_HOME/site-library-2.8.0/XML' ------------------------------------------------------------ Mark W. Kimpel MD ** Neuroinformatics ** Dept. of Psychiatry Indiana University...
2011 Mar 14
2
CentOS 5.5 php configure errors
...stall dir. I learned from the odbtp project forum that I need to run configure in the php source directory. So I downloaded the php 5.2.17 source and ran ./configure and got these results: root at myserver php-5.2.17]# ./configure ... checking whether to enable LIBXML support... yes checking libxml2 install dir... no checking for xml2-config path... configure: error: xml2-config not found. Please check your libxml2 installation. [root at myserver php-5.2.17]# [root at myserver php-5.2.17]# yum list libxml2 Loaded plugins: fastestmirror, replace Loading mirror speeds from cached hostfile * add...