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:
Copy
Ask AI
# Direct pip installation from wheel URLpip install https://hub.primeintellect.ai/will/vf-math500/@latest/vf_math500-0.1.0-py3-none-any.whl# UV pip installationuv pip install https://hub.primeintellect.ai/will/vf-math500/@latest/vf_math500-0.1.0-py3-none-any.whl# Add to existing project with UVuv add vf_math500@https://hub.primeintellect.ai/will/vf-math500/@latest/vf_math500-0.1.0-py3-none-any.whl
Once installed, you can use the environment in your Python code:
Copy
Ask AI
from verifiers import load_environment# Load the environmentenv = load_environment("vf-math500")# Use the environment for evaluation or trainingresults = env.evaluate(examples=100, rollouts_per_example=1)