Farama-Foundation / stable-retro

Retro games for Reinforcement Learning
https://stable-retro.farama.org/
MIT License
162 stars 34 forks source link

New version issue with latest git commit #70

Closed CarsonStevens closed 1 year ago

CarsonStevens commented 1 year ago

After a clean pip install git+https://github.com/Farama-Foundation/stable-retro.git


FileNotFoundError Traceback (most recent call last) in <cell line: 2>() ----> 1 import retro; print(retro.path)

/usr/local/lib/python3.10/dist-packages/retro/init.py in 9 core_path(os.path.join(os.path.dirname(file), "cores")) 10 ---> 11 with open(os.path.join(os.path.dirname(file), "VERSION.txt")) as f: 12 version = f.read() 13

FileNotFoundError: [Errno 2] No such file or directory: '/usr/local/lib/python3.10/dist-packages/retro/VERSION.txt'

This is on a Colab T4

zbeucler2018 commented 1 year ago

This MR fixes this error

MatPoliquin commented 1 year ago

Fix is merged now

CarsonStevens commented 1 year ago

Thank you for the quick fix