Ubuntu 上R包安裝問題彙總

2021-08-17 19:00:20 字數 2304 閱讀 9782

linux 上安裝r包出錯後一般會有以下的提示

1、ubuntu r 安裝rgdal 出錯

apt-get install gdal-bin

apt-get install libxml2

apt-get install libxml2-dev

apt-get install libgdal1-dev

sudo apt-get install libgdal1-dev libproj-dev

2、ubuntu  r 安裝cairo 出錯

sudo apt-get install libcairo2-dev

apt-get install gcc

apt-get install gcc++

sudo apt-get install libghc-x11-dev

3、安裝sparklyr出錯

sudo apt-get install libcurl4-openssl-dev libssl-dev

sudo apt-get install libxml2-dev

sudo apt-get install libcurl4-gnutls-dev

4、安裝依賴protobuf的包出現錯誤

if protobuf is already installed, check that 'pkg-config' is in your

path and pkg_config_path contains a protobuf.pc file

apt-get install protobuf-compiler

apt-get install libprotobuf-dev

安裝使用tar -zxf protobuf-2.5.0.tar.gz命令解壓後得到是 protobuf-2.5.0的原始碼,

cd protobuf-2.5.0 進入目錄

假如 你希望編譯成功後輸出的目錄 為 /usr/local/protobuf/ 則輸入如下兩條命令:

./configure --prefix=/usr/local/protobuf/  

make && make install

編譯成功後將export path= /usr/local/protobuf/bin:$path加入到環境變數中

source /etc/profile

最後輸入  protoc --version命令,如顯示libprotoc 2.5.0則安裝成功

5、安裝jqr出錯

sudo add-apt-repository -y ppa:opencpu/jq

sudo apt-get update -q

sudo apt-get install -y libjq-dev

在ubuntu下,時不時會有這個錯誤的。add-apt-repository: command not found這個是缺少程式,安裝一下就可以了。只是不知道安裝的名字。

$ sudo apt-get install software-properties-common python-software-properties 

6、udunits2 安裝出錯

-----error: libudunits2.a not found-----

if the udunits2 library is installed in a non-standard location,

use --configure-args='--with-udunits2-lib=/usr/local/lib' for example,

or --configure-args='--with-udunits2-include=/usr/include/udunits2'

you can alternatively use the udunits2_include and udunits2_lib

environment variables.

if udunits2 is not installed, please install it.

it is required for this package.

error: configuration failed for package 『udunits2』

sudo apt

-get install libudunits2

-dev

安裝使用ubuntu問題彙總

很早以前就安裝了ubuntu系統,可是一直沒怎麼用,也沒有深入研究。這兩天重灌了一下windows,順帶著也重新裝了一遍最新的ubuntu14.04。期間碰到了不少問題,乙個個解決也花費了不少時間。所以把這些問題都彙總在這裡,以後再碰到方便查詢,以後在使用ubuntu的過程中遇到的更多問題和解決辦法...

r語言安裝r包

cran,bioconductor還有github。bioconductor一般都是生物資訊方面的r包。github是 的託管平台,很多軟體,多種語言的程式包也都在這裡發布。install.packages dyplr 注意 更改映象 options repos c cran options bio...

unbuntu下R包安裝報錯問題

閒著將r公升級到最近的3.4.1,然後出現了乙個之前從未遇到過的乙個問題,以此做記錄。r.version 1 r version 3.4.1 2017 06 30 安裝 plotly包時出現問題報錯 報錯內容 package installation error c 11 standard requ...