Basic Installation

Install an environment from the hub:
prime env install <owner>/<environment-name>

Examples

# Install latest version
prime env install will/vf-math500

# Install specific version
prime env install will/vf-math500@0.1.0

Alternative Installation Methods

Use prime env info <owner>/<environment-name> to see all available installation methods and usage examples for a specific environment. E.g. for will/vf-math500:
# Direct pip installation from wheel URL
pip install https://hub.primeintellect.ai/will/vf-math500/@latest/vf_math500-0.1.0-py3-none-any.whl

# UV pip installation
uv pip install https://hub.primeintellect.ai/will/vf-math500/@latest/vf_math500-0.1.0-py3-none-any.whl

# Add to existing project with UV
uv add vf_math500@https://hub.primeintellect.ai/will/vf-math500/@latest/vf_math500-0.1.0-py3-none-any.whl

Using Installed Environments

In Python

Once installed, you can use the environment in your Python code:
from verifiers import load_environment

# Load the environment
env = load_environment("vf-math500")

# Use the environment for evaluation or training
results = env.evaluate(examples=100, rollouts_per_example=1)
More examples and detailed usage documentation can be found in the verifiers documentation.

Version Management

Working with Versions

Install specific versions:
# Install specific version
prime env install will/vf-math500@0.1.0

# Install latest (default)
prime env install will/vf-math500

Getting Help

For additional support and examples: