For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create and activate a virtual environment

We are going to import Python packages to make accessing the API easier. This will keep those project packages isolated to this project. You’ll know it worked if you see (.venv) at the start of your terminal prompt.

python -m venv .venv
.venv\Scripts\Activate.ps1
python3 -m venv .venv
source .venv/bin/activate

Last updated

Was this helpful?