Skip to content
Merged
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
6 changes: 3 additions & 3 deletions rllib/env/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ def try_import_pyspiel(error: bool = False):
except ImportError:
if error:
raise ImportError(
"Could not import pyspiel! Pygame is not a dependency of RLlib "
"and RLlib requires you to install pygame separately: "
"`pip install pygame`."
"Could not import pyspiel! Pyspiel is not a dependency of RLlib "
"and RLlib requires you to install pyspiel separately: "
"`pip install open_spiel`."
)
return None

Expand Down