Skip to content

Conda Setup

Install Conda

Creating a Conda Python Environment

1
2
3
4
5
6
conda create -n "agents" python=3
conda activate agents
# note we are using cuda 12.6
pip install --upgrade torch torchvision torchaudio \
    --index-url https://download.pytorch.org/whl/cu126
pip install --upgrade transformers accelerate bitsandbytes

Before you activate the conda environment your prompt will have the string 'base' in it like this:

1
(base) $
1
2
conda activate agents
(agents) $

You can get a full list of all the Python libraries by using the pip freeze command.

1
pip freeze