Error installing packages from github

前端 未结 3 1416
有刺的猬
有刺的猬 2020-12-14 12:05

I can\'t install packages from github:

> install_github(\'cranvas\', \'ggobi\', args=\"--no-multiarch\")
Installing github repo(s) cranvas/master from ggo         


        
3条回答
  •  春和景丽
    2020-12-14 12:44

    I had the same problem and I used this and it worked for me

        library(downloader)
        download("https://github.com/ropensci/plotly/archive/master.tar.gz", "plotly.tar.gz")
        install.packages("plotly.tar.gz", repos = NULL, type = "source")
    

提交回复
热议问题