This brief example shows how to build Python extensions for Nexus using the Nexus.Agent for Python.
Start the preconfigured Nexus and Nexus.Agent containers:
podman-compose up -d
# or
docker-compose up -dOnce the containers are running, open the Nexus web UI at http://localhost:5000/ and the Nexus.Agent Swagger UI at http://localhost:8000/docs.
To develop the Python extension, create a virtual environment and install the dependencies:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt