You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2020/02/21 14:27:43 UTC

[zeppelin] branch master updated: [hotfix] Fail to install r packages

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new a1ef35b  [hotfix] Fail to install r packages
a1ef35b is described below

commit a1ef35b6777cbfacc7e9a588749db1a3cac3a94a
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Fri Feb 21 18:33:00 2020 +0800

    [hotfix] Fail to install r packages
---
 testing/install_external_dependencies.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/testing/install_external_dependencies.sh b/testing/install_external_dependencies.sh
index 0c74284..5f945e8 100755
--- a/testing/install_external_dependencies.sh
+++ b/testing/install_external_dependencies.sh
@@ -62,11 +62,11 @@ if [[ "$R" == "true" ]] ; then
   sudo apt-get install r-base
 
   mkdir -p ~/R
-  R -e "install.packages('evaluate', repos = 'http://cran.us.r-project.org', lib='~/R')"  > /dev/null 2>&1
-  R -e "install.packages('base64enc', repos = 'http://cran.us.r-project.org', lib='~/R')"  > /dev/null 2>&1
-  R -e "install.packages('knitr', repos = 'http://cran.us.r-project.org', lib='~/R')"  > /dev/null 2>&1
+  R -e "install.packages('evaluate', repos = 'https://cloud.r-project.org', lib='~/R')"  > /dev/null 2>&1
+  R -e "install.packages('base64enc', repos = 'https://cloud.r-project.org', lib='~/R')"  > /dev/null 2>&1
+  R -e "install.packages('knitr', repos = 'https://cloud.r-project.org', lib='~/R')"  > /dev/null 2>&1
   R -e "install.packages('ggplot2', repos = 'https://cloud.r-project.org', lib='~/R')"  > /dev/null 2>&1
   R -e "install.packages('IRkernel', repos = 'https://cloud.r-project.org', lib='~/R');IRkernel::installspec()" > /dev/null 2>&1
-  R -e "install.packages('shiny', repos = 'http://cran.us.r-project.org', lib='~/R')" > /dev/null 2>&1
-  R -e "install.packages('googleVis', repos = 'http://cran.us.r-project.org', lib='~/R')" > /dev/null 2>&1
+  R -e "install.packages('shiny', repos = 'https://cloud.r-project.org', lib='~/R')" > /dev/null 2>&1
+  R -e "install.packages('googleVis', repos = 'https://cloud.r-project.org', lib='~/R')" > /dev/null 2>&1
 fi