gpt4 book ai didi

java - 无法在 Docker 镜像中安装 R 包

转载 作者:搜寻专家 更新时间:2023-11-01 01:32:06 24 4
gpt4 key购买 nike

似乎由于法律原因,Java 不能单独安装在 docker 镜像中,而是我们必须使用 java 镜像。

我正在使用 java 镜像,根据需要安装了 R,但是当我安装 R 包时出现错误

下面是我的 Dockerfile:

FROM buildpack-deps:jessie-scm

# A few problems with compiling Java from source:
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.

RUN apt-get update && apt-get install -y --no-install-recommends \
bzip2 \
unzip \
xz-utils \
&& rm -rf /var/lib/apt/lists/*

# Default to UTF-8 file.encoding
ENV LANG C.UTF-8

# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
RUN { \
echo '#!/bin/sh'; \
echo 'set -e'; \
echo; \
echo 'dirname "$(dirname "$(readlink -f "$(which javac || which java)")")"'; \
} > /usr/local/bin/docker-java-home \
&& chmod +x /usr/local/bin/docker-java-home

ENV JAVA_HOME /usr/lib/jvm/java-7-openjdk-amd64

ENV JAVA_VERSION 7u111
ENV JAVA_DEBIAN_VERSION 7u111-2.6.7-2~deb8u1

RUN set -x \
&& apt-get update \
&& apt-get install -y \
openjdk-7-jdk="$JAVA_DEBIAN_VERSION" \
&& rm -rf /var/lib/apt/lists/* \
&& [ "$JAVA_HOME" = "$(docker-java-home)" ]

# If you're reading this and have any feedback on how this image could be
# improved, please open an issue or a pull request so we can discuss it!

# system libraries of general use
RUN apt-get update && apt-get install -y \
sudo \
pandoc \
pandoc-citeproc \
libcurl4-gnutls-dev \
libcairo2-dev \
libxt-dev \
libssl-dev \
libssh2-1-dev \
libssl1.0.0

# system library dependency for the euler app
RUN apt-get update && apt-get install -y \
libmpfr-dev

RUN sudo apt-get install -y \
r-base r-base-dev

# basic shiny functionality
RUN R -e "install.packages(c('shiny', 'rmarkdown'), repos='https://cloud.r-project.org/')"

# install dependencies
RUN R -e "install.packages('Rmpfr', repos='https://cloud.r-project.org/')"

# Special Package
RUN R -e "install.packages('shiny')"
RUN R -e "install.packages('shinydashboard')"
RUN R -e "install.packages('plyr')"
RUN R -e "install.packages('dplyr')"
RUN R -e "install.packages('ggplot2')"
RUN R -e "install.packages('tm')"
RUN R -e "install.packages('SnowballC')"
RUN R -e "install.packages('wordcloud')"
RUN R -e "install.packages('RWeka')"
RUN R -e "install.packages('reshape2')"
RUN R -e "install.packages('igraph')"



# copy the app to the image
RUN mkdir /root/testapp1
COPY testapp1 /root/testapp1

COPY Rprofile.site /usr/lib/R/etc/

EXPOSE 3838

CMD ["R", "-e shiny::runApp('/root/testapp1')"]

当我尝试安装任何 R 包时,出现以下错误:

> install.packages('shiny')
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Error in contrib.url(repos, type) :
trying to use CRAN without setting a mirror
Calls: install.packages -> grep -> contrib.url
Execution halted
The command '/bin/sh -c R -e "install.packages('shiny')"' returned a non-zero code: 1

我该如何解决这个令人头疼的问题。

谢谢。

最佳答案

install.packages('shiny') 在 R 环境中执行时,它会挂起,要求您选择要下载的镜像。

> install.packages('shiny')

Installing package into ‘/Users/user/Library/R/3.3/library’
(as ‘lib’ is unspecified)

--- Please select a CRAN mirror for use in this session ---
HTTPS CRAN mirror

1: 0-Cloud [https]
2: Algeria [https]
...
55: (HTTP mirrors)

Selection:

根据你的错误输出看来是命令运行 R -e "install.packages(c('shiny', 'rmarkdown'), repos='https://cloud.r-project.org/')"

然后执行下一个,然后在尝试执行时失败(error exit 1):

RUN R -e "install.packages('shiny')"

改为提供 install.packages('shiny', repos='https://cloud.r-project.org/') 可能会在不询问任何内容的情况下进行静默安装。

关于java - 无法在 Docker 镜像中安装 R 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41601496/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com