Solution. How to install_github when there is a proxy

前端 未结 2 702
陌清茗
陌清茗 2020-11-28 03:34

When you try to install some package of R from GitHub\'s repository

install_github(\'rWBclimate\', \'ropensci\')

If you have the following

2条回答
  •  [愿得一人]
    2020-11-28 03:57

    If setting proxy configuration does not work (as was the case for me), one can download the package from github to local machine:

    Unzip the folder and install it from local machine:

    devtools::install("C:/path/to/folder/ggbiplot-master")
    

提交回复
热议问题