https://github.com/atmtools/atmtools-conda
Configuration files to setup consistent Anaconda environments
https://github.com/atmtools/atmtools-conda
Last synced: 9 months ago
JSON representation
Configuration files to setup consistent Anaconda environments
- Host: GitHub
- URL: https://github.com/atmtools/atmtools-conda
- Owner: atmtools
- Created: 2020-03-21T08:17:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-01T12:36:33.000Z (almost 6 years ago)
- Last Synced: 2025-09-09T12:43:26.731Z (10 months ago)
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Atmtools conda configuration
Configuration files to create conistent [Anaconda] environments.
The [condarc](condarc) controls the basic behavior of the `conda` command, like
changing the shell prompt or the list of channels to search for packages.
It is stored in the user's home directory:
```bash
cp condarc $HOME/.condarc
```
The [environment.yml](environment.yml) can be used to either create a new
environment or to update the existing base environment.
```bash
conda env create -f environment.yml # new environment
conda env update -n base -f environment.yml # update `base` environment
```
[Anaconda]: https://www.anaconda.com/distribution