ascentai / diy-gym

A framework for creating your own reinforcement learning environments using pybullet
MIT License
19 stars 3 forks source link

update requirements.txt #32

Closed MartinaRuocco closed 3 years ago

MartinaRuocco commented 3 years ago

Tried to install it today! Just a couple of modifications to make it work:

  1. after running pip install -r requirements.txt I got the error: "Could not find a version that satisfies the requirement unittest" which I solved by deleting unittest from the requirements. Solution explained here.
  2. when I tried to run python ur_high_5.py I got this other error: "segmentation fault (core dumped)" which I solved by installing an old version of gym.

To summarize I modified the requirements as follows:

numpy
gym<=0.15.3
pybullet
pyyaml
tqdm
argparse
requests

and now I can launch the test without a problem! I hope this helps! :)

thomascent commented 3 years ago

Hey @MartinaRuocco, thanks for the info! Would you be willing to make a PR to this repo with these changes?

MartinaRuocco commented 3 years ago

Already did!