k4ntz / OC_Atari

Object Centric Atari games
MIT License
45 stars 8 forks source link

Installation with Dockerfile #25

Closed aarist closed 7 months ago

aarist commented 11 months ago

Hey, the installation works fine with the provided Dockerfile, however the demos don't work out of the box, because requirements.txt installs the newest version of all the packages. This leads to errors, e.g. from open-cv: AttributeError: module 'cv2.dnn' has no attribute 'DictValue' I can resolve this problem by simply installing an older version of opencv with: pip install opencv-python==4.8.0.74 Thus, I would like to suggest specifying all the package versions inrequirements.txt.

BluemlJ commented 7 months ago

We added specific package versions to the requirements.txt. Thanks for the recommendation.