Reputation: 45
I would like to install Keras and Tensorflow for R and I don't know why but I can't. I got a Miniconda installation though.
Even if I try to use my Miniconda path I still have the same error when I try to install Keras or Tensorflow I get the same error.
Here's my code:
use_condaenv("miniconda3", required = TRUE)
install.packages('keras')
install.packages('tensorflow')
library(keras)
library(tensorflow)
install_keras()
install_tensorflow()
The error comes with install_keras() (or install_tensorflow(), whatever the first row is):
Error: installation of 'python=3.7' into environment '.../r-miniconda/envs/r-reticulate' failed [error code 1]
But this is not my miniconda3 path. I'm using this path for r-reticulate in order to generate R Markdown documents including both R and Python code.
Is there a simple way to install Keras and Tensorflow for R?
Thanks so much
Upvotes: 2
Views: 1489
Reputation: 528
First, we need to make sure we have DevTools installed so we can import the necessary packages, then install Keras.
install.packages("devtools")
devtools::install_github("rstudio/keras")
Upvotes: 0