The demo notebook used to contain everything: Customization, single-agent with SB3 and multi-agent with RLlib. It had several issues that are resolved in this PR:
The SB3 version was pinned to some alpha that supported Gymnasium. Now, it's pinned to newly released version v2.0.0.
RLlib was not pinned to any version, installed the latest one (2.5.1), which broke the notebook (#38 ). RLlib is now pinned to v2.5.1 and the notebook is adjusted to work correctly with it.
SB3 and RLlib need different Gymnasium versions, leading to conflict within the notebook. This PR splits the RLlib part off into a separate notebook, avoiding the compatibility issues.
The demo notebook used to contain everything: Customization, single-agent with SB3 and multi-agent with RLlib. It had several issues that are resolved in this PR:
Closes #38 , #31, and #32