unable to install miniconda in R

I try to install miniconda, but fails.
''''
install_miniconda(path = miniconda_path(), update = TRUE, force = FALSE)
trying URL 'https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe'
length 60924672 bytes (58.1 MB)
Error in download.file(url, destfile = installer, mode = "wb") :
download from 'https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe' failed
''''''
After searching the internet, I unchecked both "Use secure download method for HTTP" and "Use Internet Explorer librayr/proxy for HTTP", and then edit ('./.Renviron') with:
http_proxy=http://myusename:password@proxy.server.com:port/
https_proxy=http://myusename:password@proxy.server.com:port/
but the HTTP error still occured and 'couldn't resolve proxy name'
I am new to R, hope someone can help me fix the problem, Thanks!

You can install miniconda separately by downloading it from Miniconda — Conda documentation.

Install keras from conda using

conda install keras

Then there will be no need to install keras from R. R will detect it automatically when you load the keras library.

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.