4

我正在尝试sodium在 Ubuntu 系统上安装一个在 R 中调用的包,但我收到如下错误消息:

install.packages("sodium", dependencies = T)

...

* installing *source* package ‘sodium’ ...
** package ‘sodium’ successfully unpacked and MD5 sums checked
Package libsodium was not found in the pkg-config search path.
Perhaps you should add the directory containing `libsodium.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libsodium' found
Using PKG_CFLAGS=
Using PKG_LIBS=-lsodium
------------------------- ANTICONF ERROR ---------------------------
Configuration failed because libsodium was not found. Try installing:
 * deb: libsodium-dev (Debian, Ubuntu, etc)
 * rpm: libsodium-devel (Fedora, EPEL)
 * csw: libsodium_dev (Solaris)
 * brew: libsodium (OSX)
If libsodium is already installed, check that 'pkg-config' is in your
PATH and PKG_CONFIG_PATH contains a libsodium.pc file. If pkg-config
is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'
--------------------------------------------------------------------
ERROR: configuration failed for package ‘sodium’
* removing ‘/R/x86_64-pc-linux-gnu-library/3.4/sodium’
Warning in install.packages :
  installation of package ‘sodium’ had non-zero exit status

The downloaded source packages are in
    ‘/tmp/Rtmph70q7Q/downloaded_packages’

以下代码也没有安装它。

install.packages("libsodium-dev", dependencies = T)

Warning in install.packages :
  package ‘libsodium-dev’ is not available (for R version 3.4.4)

我也试过install_github了,但还是报错:

devtools::install_github("jedisct1/libsodium")

Error: Failed to install 'unknown package' from GitHub:
  Timeout was reached: [api.github.com] Resolving timed out after 10000 milliseconds

关于如何安装这个包的任何想法?

我希望在 Ubuntu R 上安装软件包就像在 Windows R 上一样没有错误。如果有人能教我如何避免在 Ubuntu R 中安装软件包错误,那就太好了。

4

1 回答 1

13

您需要libsodium-dev为您的计算机安装一些不一定是 R 特定的软件。

您可以通过 linux 中的终端执行此操作。转到您的终端并执行

sudo apt install libsodium-dev

然后回到 R 并使用通常的命令安装包

devtools::install_github("jedisct1/libsodium")

于 2020-04-27T09:34:45.543 回答