Skip to content

Commit 1d57f9a

Browse files
authored
fix(rllib): Correct typo and consistency in pyspiel import error message (#53841) (#54618)
1 parent 7a93c25 commit 1d57f9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rllib/env/utils/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ def try_import_pyspiel(error: bool = False):
3333
except ImportError:
3434
if error:
3535
raise ImportError(
36-
"Could not import pyspiel! Pygame is not a dependency of RLlib "
37-
"and RLlib requires you to install pygame separately: "
38-
"`pip install pygame`."
36+
"Could not import pyspiel! Pyspiel is not a dependency of RLlib "
37+
"and RLlib requires you to install pyspiel separately: "
38+
"`pip install open_spiel`."
3939
)
4040
return None
4141

0 commit comments

Comments
 (0)