Devashish Sood
Devashish Sood
@stewid I am using https://github.com/rstudio/tensorflow which is using `devtools`. Devtools needs git2r and is the go to alternative approach for building from source if things are incompatible. using packages.install("tensorflow") does...
Hi, I tried the command and it failed ``` install.packages('git2r', type='source', configure.vars='autobrew=yes') trying URL 'https://cran.rstudio.com/src/contrib/git2r_0.23.0.tar.gz' Content type 'application/x-gzip' length 1150314 bytes (1.1 MB) ================================================== downloaded 1.1 MB * installing *source*...
Hi @trosendal I tried the following as suggested by @souravbhabesh ``` install.packages("git2r", repos = "https://cran.r-project.org", type = "mac.binary.el-capitan") install.packages("devtools") ``` and then when I do ``` library(devtools) devtools::install_github("rstudio/tensorflow") ``` Rstudio...