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
The text was updated successfully, but these errors were encountered:
There are some tips and tricks to this.
import
library
For R here's a little python code to take your list of package installs and scan conda for matches by adding a prefix of r-
r-
# using a python notebook - we can also make an R variant pkgs = ['sys', 'askpass', 'pkgbuild', 'rprojroot', 'diffobj', 'rematch2', 'curl', 'jsonlite', 'mime', 'openssl', 'base64enc', 'brio', 'callr', 'desc', 'evaluate', 'pkgload', 'praise', 'processx', 'ps', 'waldo', 'prettyunits', 'fs', 'httr', 'purrr', 'aws.signature', 'digest', 'testthat'] rpkgs = [f"r-{item}"for item in pkgs] print(rpkgs)
# then notebook shell !conda install -c conda-forge {" ".join(rpkgs)}
#once you have your list format it for the conda yml file for item in rpkgs: print(f"\t- {item}")
Note: some R packages will require the use of install.R instead of conda Here's an example:
Sorry, something went wrong.
I think this should be expanded into its own section with the other conda/environment docs.
For now I am updating some mentions of setting up requirements.txt/conda
rtapella
No branches or pull requests
The text was updated successfully, but these errors were encountered: