stable-baselines[extra] requirement breaks Windows support
See original GitHub issueIf you run pip install -r requirements.txt
on Windows, the installation will fail while installing stable-baselines[extra]. The extra
option is applied recursively, leading to a very deep dependency tree, including packages that don’t support Windows. Removing the extra
should fix this.
Issue Analytics
- State:
- Created a year ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
ACKTR hangs/crashes · Issue #196 · hill-a/stable-baselines
Describe the bug ACKTR works with 5000 steps, but with 50000 steps it does not finish within reasonable time. Windows Task manager indicates ......
Read more >Installation — Stable Baselines 2.10.3a0 documentation
To support all algorithms, Install MPI for Windows (you need to download and install msmpisetup.exe ) and follow the instructions on how to...
Read more >Changelog — Stable Baselines 2.10.3a0 documentation
Breaking Changes: OpenMPI-dependent algorithms (PPO1, TRPO, GAIL, DDPG) are disabled in the default installation of stable_baselines. mpi4py is now installed ...
Read more >Stable Baselines Documentation - Read the Docs
Stable Baselines is a set of improved implementations of Reinforcement Learning (RL) algorithms based on OpenAI Baselines. Note: Stable- ...
Read more >pdf
Stable Baselines3 (SB3) is a set of reliable implementations of reinforcement learning algorithms in PyTorch. It is the next major version of ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The culprit that broke it for me is
pandas > hypothesis > attrs > pytest > pluggy > importlib-metadata > zipp > sphinx > sphinxcontrib-applehelp > mypy > psutil > mock > twine > readme-renderer > bleach > tinycss2 > sphinx-rtd-theme > sphinxcontrib-httpdomain > Sphinx > sphinxcontrib-htmlhelp > html5lib > genshi > setuptools > jaraco.packaging > rst.linker > pytest-checkdocs > pytest-cov > pytest-xdist > execnet > pre-commit > virtualenv > filelock > sphinx-autodoc-typehints > nptyping > black > platformdirs > pytest-mock > tox > towncrier > incremental > twisted > Automat > Twisted > twistedchecker > pylint > isort > requirementslib > vistir > pytype
I will check that everything installs on Window if I remove
extra
and submit a PRshould be fixed with the rl zoo released as a package (for minimal support, you don’t need
requirements.txt
,pip install rl_zoo3
orpip install -e .
from source)