diff options
author | Chuck Lantz <clantz@microsoft.com> | 2022-08-11 23:11:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 23:11:00 +0300 |
commit | 29e25a77b03c0c8d34c612a74adffb2362af2bff (patch) | |
tree | 79ac107a58ba980e03a8dd869c4fc57406fd6aee /src/anaconda/NOTES.md | |
parent | f8396a6c3531a3a307f5f9d1d3adf065baa7a5a6 (diff) |
Add notes for Features that have them (#88)
Co-authored-by: Brigit Murtaugh <brigit.murtaugh@microsoft.com>
Diffstat (limited to 'src/anaconda/NOTES.md')
-rw-r--r-- | src/anaconda/NOTES.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/anaconda/NOTES.md b/src/anaconda/NOTES.md new file mode 100644 index 0000000..f2ecdc1 --- /dev/null +++ b/src/anaconda/NOTES.md @@ -0,0 +1,13 @@ +## Using Conda + +This Feature includes [the `conda` package manager](https://docs.conda.io/projects/conda/en/latest/index.html). 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 +``` |