This page is for users who want to install theDocumentation Index
Fetch the complete documentation index at: https://wb-21fd5541-style-guide-support-models-articles-20260527-00.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
wandb Python library in environments without gcc, such as minimal container images or restricted systems. Follow these steps to complete the installation without compiling dependencies from source.
If an error occurs when installing wandb that states:
psutil dependency from source, which requires gcc. To work around this, install psutil from a pre-built wheel so no compilation is required.
To install wandb without gcc:
-
Determine your Python version and operating system at the pywharf
psutilpackage repository. -
Install
psutilfrom a pre-built wheel. For example, to installpsutilon Python 3.8 in Linux: -
Run
pip install wandbto complete the installation.
psutil is already satisfied from the pre-built wheel, pip skips the source build that triggered the original gcc error, and wandb installs successfully.
Python