在 R 中安装 libpng 时出现问题错误:找不到此类文件

发布于 2025-01-12 09:51:01 字数 711 浏览 0 评论 0原文

我目前有一个创建为“r_env”的 conda 环境,并尝试将“tensorflow”包安装到终端上的 R 中。但是,在 RI 中,无论我在加载 R 后是否直接从终端安装“tensorflow”或“png”包,都会出现相同的错误。

在此处输入图像描述

我目前在 conda 环境中安装了以下软件包:

<一href="https://i.sstatic.net/eKTZA.png" rel="nofollow noreferrer">在此处输入图像描述

在此处输入图像描述

在我看来,安装程序正在尝试在 ./conda/ 中查找库文件envs/r_env/lib/R/library,同时它已安装在 ./conda/envs/r_env 中。我该如何纠正这个问题? (注意:我没有 sudo 权限,但此时任何解决方案都是有帮助的!)

I currently have a conda environment created as "r_env" and is trying to install the "tensorflow" package into R on terminal. However, in R I keep having the same error, regardless if I am install "tensorflow" or "png" package directly from terminal after loading R.

enter image description here

I currently have the following packages installed in the conda env:

enter image description here

enter image description here

It appears to me that the installer is trying to look for the library files in ./conda/envs/r_env/lib/R/library whilst it is already installed in ./conda/envs/r_env. How may I rectify this issue? (Note: I do not have sudo privileges, but any solutions at this point is helpful!)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北方。的韩爷 2025-01-19 09:51:01

使用此代码安装 tensorFlow

library(keras)
  install_keras()
  devtools::install_github("rstudio/keras")
  install_tensorflow(package_url = "https://pypi.python.org/packages/b8/d6/af3d52dd52150ec4a6ceb7788bfeb2f62ecb6aa2d1172211c4db39b349a2/tensorflow-1.3.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=1cf77a2360ae2e38dd3578618eacc03b")
  library(tensorflow)

之后尝试安装 png

install.packages("png")
  library(png)

最后检查 png:

  capabilities()["png"]

输出:

 png 
TRUE 

Use this code to install tensorFlow:

library(keras)
  install_keras()
  devtools::install_github("rstudio/keras")
  install_tensorflow(package_url = "https://pypi.python.org/packages/b8/d6/af3d52dd52150ec4a6ceb7788bfeb2f62ecb6aa2d1172211c4db39b349a2/tensorflow-1.3.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=1cf77a2360ae2e38dd3578618eacc03b")
  library(tensorflow)

After that try installing png:

install.packages("png")
  library(png)

Finally check png:

  capabilities()["png"]

Output:

 png 
TRUE 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文