Can Not Install XML Package

前端 未结 4 1945
暖寄归人
暖寄归人 2021-01-15 12:06

I can not install the latest XML package V3.9-4. I mannually install it in RGui by typing:

install.packages(\"LOCALDIR/XML_3.6-0.tar.gz\", repos=NULL, type=         


        
4条回答
  •  余生分开走
    2021-01-15 13:05

    I fixed this for myself today, noting it here for prosperity.

    On Unbuntu systems, you can fix this by loading libxml2-dev:

    sudo apt-get install libxml2-dev
    

    After I did that, install.packages("XML") ran without a hitch.

提交回复
热议问题