在 Ubuntu 系统上的 R 中安装 Sodium 包时出现问题
Problem installing Sodium package in R on an Ubuntu system
我正在尝试在 Ubuntu 系统上的 R 中安装一个名为 sodium
的包,但我收到如下错误消息:
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 中的包安装错误,那就太好了。
您需要安装 libsodium-dev
,一些适用于您的计算机的软件不一定是特定于 R 的。
您可以通过 linux 中的终端执行此操作。转到您的终端并执行
sudo apt install libsodium-dev
然后回到 R 并使用通常的命令安装包
devtools::install_github("jedisct1/libsodium")
我正在尝试在 Ubuntu 系统上的 R 中安装一个名为 sodium
的包,但我收到如下错误消息:
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 中的包安装错误,那就太好了。
您需要安装 libsodium-dev
,一些适用于您的计算机的软件不一定是特定于 R 的。
您可以通过 linux 中的终端执行此操作。转到您的终端并执行
sudo apt install libsodium-dev
然后回到 R 并使用通常的命令安装包
devtools::install_github("jedisct1/libsodium")