如何在支持 lz4 的 RStudio Cloud 上安装 arrow 包?
How do I install the arrow package on RStudio Cloud with lz4 support?
我有类似的问题RStudio community post and to
我已经尝试了两种情况下提供的解决方案。我仍然无法安装支持 lz4 的箭头。我正在尝试使用需要 lz4 支持的 arrow::read_feather()
。
按照第一个解决方案中的说明进行操作后,在尝试加载箭头包时出现以下错误。
> library(arrow)
Error: package or namespace load failed for ‘arrow’ in dyn.load(file, DLLpath = DLLpath, ...):
unable to load shared object '/home/rstudio-user/R/x86_64-pc-linux-gnu-library/4.0/arrow/libs/arrow.so':
libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
关于如何在 RStudio Cloud 中安装支持 lz4 的箭头有什么想法吗?
感谢@JonKeane 的评论和他对我的回答 jira issue
我能够使用
Sys.setenv(LIBARROW_BINARY = TRUE); install.packages('arrow', type = "source")
解决这个问题。
我有类似的问题RStudio community post and to
我已经尝试了两种情况下提供的解决方案。我仍然无法安装支持 lz4 的箭头。我正在尝试使用需要 lz4 支持的 arrow::read_feather()
。
按照第一个解决方案中的说明进行操作后,在尝试加载箭头包时出现以下错误。
> library(arrow)
Error: package or namespace load failed for ‘arrow’ in dyn.load(file, DLLpath = DLLpath, ...):
unable to load shared object '/home/rstudio-user/R/x86_64-pc-linux-gnu-library/4.0/arrow/libs/arrow.so':
libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
关于如何在 RStudio Cloud 中安装支持 lz4 的箭头有什么想法吗?
感谢@JonKeane 的评论和他对我的回答 jira issue
我能够使用
Sys.setenv(LIBARROW_BINARY = TRUE); install.packages('arrow', type = "source")
解决这个问题。