Here’s how I installed Arize Phoenix, an open-source AI observability and evaluation tool, using the uv package manager:
# Create and open folder for project
mkdir phoenix
cd phoenix
# Create and use virtual env
uv venv .venv
source .venv/bin/activate
# Install dependencies for AI Providers
uv pip install openai azure-identity anthropic google-generativeai
# Install Arize Phoenix
uv pip install arize-phoenix
# Run
phoenix serve
BashTo open it in the future, just run the following commands:
# Open project folder
cd phoenix
# Use virtual env
source .venv/bin/activate
# Run
phoenix serve
Bash
Leave a Reply