Skip to main content
Organizations that register conda clients gain clearer visibility into how conda is being used across their teams to help ensure usage aligns with license agreements and compliance requirements. If you would like to streamline registration for your organization, contact your customer success manager to discuss options for organization-wide bulk registration. They can recommend approaches that fit your needs and minimize the steps required from your organization members. Once you’ve set up bulk registration, instruct your organization members to follow the steps below to register their conda client:
  1. Open Anaconda Prompt (Terminal on macOS/Linux).
  2. Install anaconda-auth and anaconda-anon-usage into your base environment:
    conda install --name base anaconda-auth --channel https://repo.anaconda.cloud/repo/anaconda-tools --override-channels
    

Using an organization token in automated workflow environments

If your organization members are utilizing Anaconda services as part of automated workflows or CI/CD pipelines, they can use the organization token provided by Anaconda during bulk registration setup to authenticate their conda clients programmatically. In the automated workflow system, set the organization token using one of the following methods:
  • Environment Variable
  • Docker Container
Set the ANACONDA_ANON_USAGE_ORG_TOKEN environment variable:
# Replace <YOUR_ORG_TOKEN> with the token you received from your Anaconda customer success manager
export ANACONDA_ANON_USAGE_ORG_TOKEN="<YOUR_ORG_TOKEN>"