## Describe the bug Getting ```Environment `PongNoFrameskip` doesn't exist.``` error while running the a2c_atari implementation ## To Reproduce 1. Install the dependencies (for atari) 2. Run ```sh sota-check/run_a2c_atari.sh``` ## Expected behavior Gymnasium should recognise the environment. Training should start ## Screenshots If applicable, add screenshots to help explain your problem. <img width="1196" alt="Image" src="https://github.com/user-attachments/assets/9c3e6b7d-87c3-4547-a19c-1a783b9d17bf" /> ## System info Describe the characteristic of your environment: * Installed from local using ```python setup.py develop``` * Python version: 3.10 * Versions of any other relevant libraries: Gymnasium: 1.1.1, Gymnasium: 1.1.0 - All giving same error ## Reason and Possible fixes Adding ```import ale_py``` in the script a2c_atari.py fixes the error. References: https://ale.farama.org/gymnasium-interface/ , https://stackoverflow.com/questions/76150278/getting-an-error-trying-to-import-environment-openai-gym It seems with newer versions of gymnasium, we need to import ale_py separately for atari games. ## Checklist - [x] I have checked that there is no similar issue in the repo (**required**) - [x] I have read the [documentation](https://github.com/pytorch/rl/tree/main/docs/) (**required**) - [x] I have provided a minimal working example to reproduce the bug (**required**)