Установка пакета R: использование локально установленных библиотек

В частности, я пытаюсь установить rggobi локально на Linux (у меня нет доступа с правами root). Поэтому я установил Ggobi локально

cd ggobi-2.1.11/
./configure --prefix=~/my-apps/ --with-all-plugins
make
make install

Это прошло хорошо. Потом я попробовал

$ R CMD INSTALL /tmp/Rtmp2PL6au/downloaded_packages/rggobi_2.1.20.tar.gz -l ~/R/x86_64-redhat-linux-gnu-library/3.1/
* installing *source* package ‘rggobi’ ...
** package ‘rggobi’ successfully unpacked and MD5 sums checked
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GGOBI... no
configure: error: Package requirements (ggobi >= 2.1.6) were not met:
No package 'ggobi' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.
Alternatively, you may set the environment variables GGOBI_CFLAGS and GGOBI_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
ERROR: configuration failed for package ‘rggobi’
* removing ‘/apps/infrafs1/rdahiya/R/x86_64-redhat-linux-gnu-library/3.1/rggobi’

Я попытался добавить ~/my-apps/lib/pkgconfig/ в PKG_CONFIG_PATH, что помогло установке немного продвинуться, но в конце выдает другую ошибку

building package indices
testing if installed package can be loaded
Error in dyn.load(file, DLLpath = DLLpath, ...) : 
unable to load shared object '~/R/x86_64-redhat-linux-gnu-library/3.1/rggobi/libs/rggobi.so': libggobi.so.0: cannot open shared object file: No such file or directory
Error: loading failed
Execution halted
ERROR: loading failed
removing ‘~/R/x86_64-redhat-linux-gnu-library/3.1/rggobi’

libggobi.so.0 находится в ~/my-apps/lib/. Любое предложение, как заставить R смотреть в правильном месте?

1 ответ

Я нашел (?) Работу вокруг. Я должен установить LD_LIBRARY_PATH=~/my-apps/lib/ при установке или во время любого будущего сеанса R, где я хочу загрузить rggobi. Пожалуйста, поделитесь, если у вас есть более чистое решение.

Другие вопросы по тегам