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 09:24:45 UTC

[zeppelin] branch master updated: [hotfix] unable to install ggplot2

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 029799d  [hotfix] unable to install ggplot2
029799d is described below

commit 029799dc03a17b8fd4933e4dfb9883c5a09ec410
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Fri Feb 21 17:11:15 2020 +0800

    [hotfix] unable to install ggplot2
---
 testing/install_external_dependencies.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/install_external_dependencies.sh b/testing/install_external_dependencies.sh
index bdd9c53..0c74284 100755
--- a/testing/install_external_dependencies.sh
+++ b/testing/install_external_dependencies.sh
@@ -65,7 +65,7 @@ if [[ "$R" == "true" ]] ; then
   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('ggplot2', repos = 'http://cran.us.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