Documentation Index
Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
In order to use conda to interact with your Anaconda Server channels, you must first configure your .condarc file. There are multiple methods for accomplishing this:
Anaconda Server CLI
Conda config commands
For instructions on how to configure your .condarc using the CLI, see Using the .condarc configuration wizard. Choose a set of conda configuration commands that matches your setup:Set your channel alias by running the following command:# Replace <FQDN> with your Anaconda Server fully qualified domain name
conda config --set channel_alias https://<FQDN>/api/repo
Set your channel alias by running the following command:# Replace <FQDN> with your Anaconda Server fully qualified domain name
conda config --set channel_alias http://<FQDN>/api/repo
Once your channel alias is set, add any Anaconda Server channels you need to access to your .condarc by running the following command:# Replace <CHANNEL_NAME> with the name of your channel
conda config --add channels <CHANNEL_NAME>
You must run this command for each channel you need to access.
For more information, see the official conda documentation.