I gave the following command
library(reticulate)
py_install("pandas")
I am getting an error while installing python packages in RStudio :
Solving environment: ...working... failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/noarch/repodata.json.bz2>
Elapsed: -
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
If your current network has https://www.anaconda.com blocked, please file
a support request with your network engineering team.
SSLError(MaxRetryError('HTTPSConnectionPool(host=\'repo.anaconda.com\', port=443): Max retries exceeded with url: /pkgs/main/noarch/repodata.json.bz2 (Caused by SSLError("Can\'t connect to HTTPS URL because the SSL module is not available."))'))
Error: Error 1 occurred creating conda environment r-reticulate
Please help in resolving this error.
reticulatepackage), not an R package.reticulatepackage is used to execute python code in R studio or within R code as far as i know and its not used to install any package. It provides python environment within R. Refer this for more details. Python packages need to be installed as usual either via pip or conda if anconda is being used. And to use it within R, usereticulateand mention proper path where python packages are installed.piporconda, why did you suggestinstall.packages()?