Skip to content

Commit

Permalink
Add comment in full_multisolve.py about packages needed.
Browse files Browse the repository at this point in the history
  • Loading branch information
nhuet committed Jan 4, 2024
1 parent 6d3c02b commit 1530979
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/full_multisolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

"""Example mixing various domains with various solvers.
NB: to be able to launch this example, you need to install scikit-decide with all optional dependencies
+ atari and autorom to play pacman (see https://gymnasium.farama.org/environments/atari/).
```
pip install scikit-decide[all]
pip install gymnasium[atari,accept-rom-license]
```
In doing so (`pip install gymnasium[accept-rom-license]`), you agree to own a license to these Atari 2600 ROMs
and agree to not distribution these ROMS.
"""

from math import sqrt
from typing import Any, Callable

Expand Down

0 comments on commit 1530979

Please sign in to comment.