> ## 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.

# Weights and Biases용 Anaconda 패키지가 있나요?

`pip` 또는 `conda`로 설치할 수 있는 Anaconda 패키지가 있습니다. `conda`의 경우 [conda-forge](https://conda-forge.org) 채널에서 패키지를 설치하세요.

<Tabs>
  <Tab title="pip">
    ```bash theme={null}
    # conda 환경 생성
    conda create -n wandb-env python=3.8 anaconda
    # 환경 활성화
    conda activate wandb-env
    # pip를 사용해 wandb 설치
    pip install wandb
    ```
  </Tab>

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

설치 문제가 발생하면 패키지 관리에 대한 Anaconda의 [문서](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-pkgs.html)를 참고하세요.

***

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