RL4AA / rl-tutorial-ares-basic

https://rl4aa.github.io/rl-tutorial-ares-basic/
GNU General Public License v3.0
10 stars 0 forks source link

current requirements.txt uninstallable on fedora 40 #1

Open phako opened 1 week ago

phako commented 1 week ago

I was trying to install this on fedora 40 using the venv method and the conda method - seems that pip decides to install a version of stable-baselines3 that pulls in gym in version 0.21 that is not installable with recent pythons (cf. https://github.com/openai/gym/issues/3176)

I have fixed this locally by forcing stable-baselines3 to version 2.2.1 (no clue if this is a good version) but maybe that is something you might need to look at

cr-xu commented 1 week ago

Hi, are you installing from the environment.yml? I think the specified version there is gym==0.26.2 and stable-baselines3==2.2.1 which does not have that problem.

Indeed the README.md doesn't say that one should install from the yml file. Thanks for noticing the issue, I will fix that.

phako commented 6 days ago

no I was installing from requirements.txt as per readme file