Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/anaconda/README.md
Co-authored-by: Samruddhi Khandale <samruddhikhandale@github.com>
  • Loading branch information
alexander-smolyakov and samruddhikhandale authored Aug 14, 2023
commit c642c0e4b8006b81dcb37ab19f66abfad492f58a
2 changes: 1 addition & 1 deletion src/anaconda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Given JavaScript front-end web client code written for use in conjunction with a

#### Using different Conda channels

This devcontainer is based on the `ContinuumIO/anaconda3` docker image, which has all the `anaconda3` packages from defaults installed into the so-called base Conda's environment. It is recommended not to install packages from different channels in one environment since it could cause conflicts. When installing a package from a different channel (e.g., `conda-forge`) is required, the better approach is to create a new Conda environment.
This image is based on the `ContinuumIO/anaconda3` docker image, which has all the `anaconda3` packages from defaults installed into the base conda's environment. It is recommended not to install packages from different channels in one environment since it could cause conflicts. When installing a package from a different channel (e.g., `conda-forge`) is required, the better approach is to create a new conda environment.

```bash
conda create --name <env_name> -c <channel> --yes <package_name>
Expand Down