> ## Documentation Index
> Fetch the complete documentation index at: https://docs.primeintellect.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Install & Use Environment

> Learn how to install and use environments from the Prime Intellect Environments Hub

### Basic Installation

Install an environment from the Environments Hub:

```bash theme={null}
prime env install <owner>/<environment-name>
```

### Examples

```bash theme={null}
# Install latest version
prime env install will/wordle

# Install specific version
prime env install will/wordle@0.1.3
```

### 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/wordle](https://app.primeintellect.ai/dashboard/environments/will/wordle):

```bash theme={null}
# Direct pip installation from wheel URL
pip install https://hub.primeintellect.ai/will/wordle/@latest/wordle-0.1.4-py2.py3-none-any.whl

# UV pip installation
uv pip install https://hub.primeintellect.ai/will/wordle/@latest/wordle-0.1.4-py2.py3-none-any.whl

# Add to existing project with UV
uv add wordle@https://hub.primeintellect.ai/will/wordle/@latest/wordle-0.1.4-py2.py3-none-any.whl
```

## Using Installed Environments

### In Python

Once installed, you can use the environment in your Python code:

```python theme={null}
from verifiers import load_environment

# Load the environment
env = load_environment("will/wordle")

# Use the environment for evaluation or training
results = env.evaluate(examples=100, rollouts_per_example=1)
```

<Tip>
  More examples and detailed usage documentation can be found in the [verifiers documentation](https://github.com/PrimeIntellect-ai/verifiers).
</Tip>

## Version Management

### Working with Versions

Install specific versions:

```bash theme={null}
# Install specific version
prime env install will/wordle@0.1.3

# Install latest (default)
prime env install will/wordle
```

### Upgrading Environments

To upgrade an already installed environment, simply run `prime env install` again:

```bash theme={null}
# Upgrade to latest version
prime env install will/wordle

# Upgrade to specific version
prime env install will/wordle@0.2.0
```

## Download Source Code

If you want to inspect, modify, or contribute to an environment, you can download its source code:

```bash theme={null}
# Download the latest version
prime env pull owner/environment-name
```

**Example:**

```bash theme={null}
prime env pull will/wordle
```

## Getting Help

For additional support and examples:

* **Verifiers Documentation**: [Verifiers Docs](/verifiers/overview)
* **GitHub Repository**: [https://github.com/PrimeIntellect-ai/verifiers](https://github.com/PrimeIntellect-ai/verifiers)
* **Discord Community**: Join our [Discord](https://discord.gg/ZTFydGWPKj) for community support
