> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Is there an anaconda package for Weights and Biases?

An Anaconda package is available, and you can install it with either `pip` or `conda`. For `conda`, get the package from the [conda-forge](https://conda-forge.org) channel.

<Tabs>
  <Tab title="pip">
    ```bash theme={null}
    # Create a conda environment
    conda create -n wandb-env python=3.8 anaconda
    # Activate the environment
    conda activate wandb-env
    # Install wandb using pip
    pip install wandb
    ```
  </Tab>

  <Tab title="conda">
    ```bash theme={null}
    conda activate myenv
    conda install wandb --channel conda-forge
    ```
  </Tab>
</Tabs>

For help with installation issues, see Anaconda's [documentation about managing packages](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-pkgs.html).

***

<Badge stroke shape="pill" color="orange" size="md">[Python](/support/models/tags/python)</Badge>
