Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion verifiers/utils/env_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def load_environment(env_id: str, **env_args) -> Environment:
f"Failed to import environment module {module_name} for env_id {env_id}: {str(e)}"
)
raise ValueError(
f"Could not import '{env_id}' environment. Ensure the package for the '{env_id}' environment is installed."
f"Could not import '{env_id}' environment. Ensure the package for the '{env_id}' environment is installed with `vf-install {env_id}`."
) from e
except Exception as e:
logger.error(
Expand Down