gpt4 book ai didi

c - 在集群上安装 R 包时出现奇怪的 C 编译器错误

转载 作者:行者123 更新时间:2023-12-04 11:34:50 25 4
gpt4 key购买 nike

-- 我能够解决这个问题,请参阅下面的最后编辑 ---

我正在尝试在我研究所的计算集群上使用 R。对于并行计算问题,我想安装snow和Rmpi包。所以我下载了 tar.gz 文件并尝试安装 pacakges,对于雪来说它运行良好,但是对于 Rmpi​​ 发生了一些奇怪的事情:

我首先做的:

install.packages("/home/myusername/Rpackages/Rmpi_0.6-5.tar.gz", repos = NULL, type = "source", lib = "/home/myusername/Rpackages/")
* installing *source* package ‘Rmpi’ ...
** Paket ‘Rmpi’ erfolgreich entpackt und MD5 Summen überprüft
checking for gcc... gcc -m64 -std=gnu99
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc -m64 -std=gnu99 accepts -g... yes
checking for gcc -m64 -std=gnu99 option to accept ISO C89... none needed
Trying to find mpi.h ...
Cannot find mpi.h header file
Please use --with-mpi=/path/to/mpi or specify the environment variable MPI_ROOT
ERROR: configuration failed for package ‘Rmpi’
* removing ‘/home/myusername/Rpackages/Rmpi’

好的,所以 mpi.h 似乎丢失了,我进行了一些搜索并找到了该怎么做:指定 MPI 库的路径:
> install.packages("/home/myusername/Rpackages/Rmpi_0.6-5.tar.gz", repos = NULL, type = "source", lib = "/home/myusername/Rpackages/", configure.args="--with-mpi=/cm/local/modulefiles/openmpi/gcc/64/1.6.3" )
* installing *source* package ‘Rmpi’ ...
** Paket ‘Rmpi’ erfolgreich entpackt und MD5 Summen überprüft
checking for gcc... gcc -m64 -std=gnu99
checking whether the C compiler works... no
configure: error: in `/tmp/Rtmp9qZ8QA/R.INSTALLad327c257ce2/Rmpi':
configure: error: C compiler cannot create executables
See `config.log' for more details

ERROR: configuration failed for package ‘Rmpi’
* removing ‘/home/myusername/Rpackages/Rmpi’
Warnmeldung:
In install.packages("/home/myusername/Rpackages/Rmpi_0.6-5.tar.gz", :
Installation des Pakets ‘/home/myusername/Rpackages/Rmpi_0.6-5.tar.gz’ hatte Exit-Status ungleich 0

所以现在没有 mpi.h 错误,但 C 编译器似乎不起作用,虽然它以前确实如此,我只更改了 install.packages 函数中的 mpi 选项。

这里出了什么问题,我该如何安装软件包?

编辑2:经过一些帮助,我想出了如何找到mpi文件所在的位置并执行以下操作:
install.packages("/home/myusername/Rpackages/Rmpi_0.6-5.tar.gz", repos = NULL, type = "source", lib = "/home/myusername/Rpackages/", configure.args=c("--with-Rmpi-libpath=/usr/mpi/gcc/openmpi-1.6.3/lib64/","--with‌​-Rmpi-type=OPENMPI", "--with-Rmpi-include=/usr/mpi/gcc/openmpi-1.6.3/include/") )

但是,这仍然不起作用,我收到以下错误:
* installing *source* package ‘Rmpi’ ...
** Paket ‘Rmpi’ erfolgreich entpackt und MD5 Summen überprüft
checking for openpty in -lutil... no
checking for main in -lpthread... no
configure: creating ./config.status
config.status: creating src/Makevars
** libs
gcc -m64 -std=gnu99 -I/usr/include/R -DNDEBUG -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -I/usr/mpi/gcc/openmpi-1.6.3/include/ -DMPI2 -DOPENMPI -I/usr/local/include -fpic -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -c Rmpi.c -o Rmpi.o
Rmpi.c: In Funktion »mpi_bcast«:
Rmpi.c:605:2: Fehler: unbekannter Typname: »R_xlen_t«
make: *** [Rmpi.o] Fehler 1
ERROR: compilation failed for package ‘Rmpi’

编辑 3:我想出了一个解决我的问题的方法,由于信息不完整,我猜这里没有人能找到。在集群上,R 仅安装在 2.15.2 版本中,但 Rmpi​​ 0.6-5 是为 R 3.0.0 或更新版本构建的。 Rmpi 包中的 R 版本依赖指定错误。我下载了一个旧版本(Rmpi 0.6-1)并且能够安装这个版本。

最佳答案

我在 Ubuntu 中安装了 libopenmpi-dev 并尝试在 Rstudio 中安装 Rmpi​​。有效!

关于c - 在集群上安装 R 包时出现奇怪的 C 编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29491392/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com