buildingamind / NewbornEmbodiedTuringTest

A testbed for comparing the learning abilities of newborn animals and autonomous artificial agents.
MIT License
8 stars 0 forks source link

Remove Need for Setuptools and Pip Downgrades #5

Open Zach-Attach opened 7 months ago

Zach-Attach commented 7 months ago

Is your feature request related to a problem? Please describe. As it currently stands, users are required to run pip install setuptools==65.5.0 pip==21 prior to installing. This is a solution, but is fragile and may lead to dependency conflicts in the future. It also makes installation of the package more difficult for users and may force them to be unable to run it with their existing code.

Describe the solution you'd like According to this comment, the solution is to change gym to gymnasium

It might be possible to simply use gym==0.27 instead, but this is unconfirmed and just speculative.

Describe alternatives you've considered

desaibhargav commented 7 months ago

Thanks for the details on this @Zach-Attach, the only clean solution I see is if mlagents bumps support from gym to gymnasium which currently does not look like a priority, see here [https://github.com/Unity-Technologies/ml-agents/issues/5995]

I haven't tested with gym==0.27 yet, please let me know if everything runs successfully for you with that version.