We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When working on linux paws seems to take a long time to install.
paws
Source: Time difference of 16.62202 mins
We have 2 options:
FROM rocker/r2u:jammy RUN apt-get update RUN apt-get install -y --no-install-recommends \ libcurl4-openssl-dev \ libssl-dev \ libxml2-dev RUN Rscript -e "install.packages('paws')" CMD ["R"]
install.packages('paws', repos = c(paws = "https://paws-r-builds.s3.amazonaws.com/packages/0.3.0/", CRAN = 'https://cloud.r-project.org') )
Binaries: Time difference of 21.74674 secs
FROM rocker/r-base RUN apt-get update RUN apt-get install -y --no-install-recommends \ libcurl4-openssl-dev \ libssl-dev \ libxml2-dev RUN Rscript -e "install.packages('paws', repos = c(paws = 'https://paws-r-builds.s3.amazonaws.com/packages/0.3.0/', CRAN = 'https://cloud.r-project.org'))" CMD ["R"]
When working on cloud services like AWS Sagemaker option 2 would be more beneficial.
The text was updated successfully, but these errors were encountered:
DyfanJones
Successfully merging a pull request may close this issue.
When working on linux
paws
seems to take a long time to install.Source:
Time difference of 16.62202 mins
We have 2 options:
Binaries:
Time difference of 21.74674 secs
When working on cloud services like AWS Sagemaker option 2 would be more beneficial.
The text was updated successfully, but these errors were encountered: