aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-09-01 23:19:34 +0300
committerGitHub <noreply@github.com>2022-09-01 23:19:34 +0300
commitf8dba16f44034db9752c6adb8144e645493a5b96 (patch)
tree559ae3a45aafb2a42f65afc03bac38e2f468a86c
parent771a3005946be5f1d2a30020eb1e11993d1dbc74 (diff)
Automated documentation update (#129)
Automated documentation update [skip ci] Co-authored-by: github-actions <github-actions@github.com>
-rw-r--r--src/conda/README.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/conda/README.md b/src/conda/README.md
new file mode 100644
index 0000000..2c63830
--- /dev/null
+++ b/src/conda/README.md
@@ -0,0 +1,40 @@
+
+# Conda - A cross-platform, language-agnostic binary package manager (conda)
+
+
+
+## Example Usage
+
+```json
+"features": {
+ "ghcr.io/devcontainers/features/conda:1": {
+ "version": "latest"
+ }
+}
+```
+
+## Options
+
+| Options Id | Description | Type | Default Value |
+|-----|-----|-----|-----|
+| version | Select or enter a conda version. | string | latest |
+| addCondaForge | Add conda-forge channel to the config? | boolean | - |
+
+## Using Conda
+
+This Feature includes [the `conda` package manager](https://docs.conda.io/projects/conda/en/latest/index.html) which is a part of the [Anaconda Distribution](https://repo.anaconda.com). Additional packages installed using Conda will be downloaded from Anaconda or another repository if you configure one. To reconfigure Conda in this container to access an alternative repository, please see information on [configuring Conda channels here](https://docs.conda.io/projects/conda/en/latest/user-guide/concepts/channels.html ).
+
+Access to the Anaconda repository is covered by the [Anaconda Terms of Service](https://legal.anaconda.com/policies/en/?name=terms-of-service), which may require some organizations to obtain a commercial license from Anaconda. **However**, when used with GitHub Codespaces or GitHub Actions, **all users are permitted** to use the Anaconda Repository through the service, including organizations normally required by Anaconda to obtain a paid license for commercial activities. Note that third-party packages may be licensed by their publishers in ways that impact your intellectual property, and are used at your own risk.
+
+## Installing a different version of Python
+
+As covered in the [user FAQ](https://docs.anaconda.com/anaconda/user-guide/faq) for Anaconda, you can install different versions of Python than the one in this image by running the following from a terminal:
+
+```bash
+conda install python=3.7
+```
+
+
+---
+
+_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/devcontainers/features/blob/main/src/conda/devcontainer-feature.json). Add additional notes to a `NOTES.md`._