mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-09-17 22:30:59 +00:00
Make installation command compatible with ZSH (#376)
* Add quotes * Add Zsh bracket info * Add clarify pip installation line * Make note bold * Add Zsh pip installation note
This commit is contained in:
parent
ba73d152d5
commit
c0966f3745
3 changed files with 7 additions and 1 deletions
|
|
@ -93,6 +93,7 @@ Install the Stable Baselines3 package:
|
||||||
```
|
```
|
||||||
pip install stable-baselines3[extra]
|
pip install stable-baselines3[extra]
|
||||||
```
|
```
|
||||||
|
**Note:** Some shells such as Zsh require quotation marks around brackets, i.e. `pip install 'stable-baselines3[extra]'` ([More Info](https://stackoverflow.com/a/30539963)).
|
||||||
|
|
||||||
This includes an optional dependencies like Tensorboard, OpenCV or `atari-py` to train on atari games. If you do not need those, you can use:
|
This includes an optional dependencies like Tensorboard, OpenCV or `atari-py` to train on atari games. If you do not need those, you can use:
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,10 @@ To install Stable Baselines3 with pip, execute:
|
||||||
|
|
||||||
pip install stable-baselines3[extra]
|
pip install stable-baselines3[extra]
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
Some shells such as Zsh require quotation marks around brackets, i.e. ``pip install 'stable-baselines3[extra]'`` `More information <https://stackoverflow.com/a/30539963>`_.
|
||||||
|
|
||||||
|
|
||||||
This includes an optional dependencies like Tensorboard, OpenCV or ``atari-py`` to train on atari games. If you do not need those, you can use:
|
This includes an optional dependencies like Tensorboard, OpenCV or ``atari-py`` to train on atari games. If you do not need those, you can use:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ Documentation:
|
||||||
- Added link to SuperSuit in projects (@justinkterry)
|
- Added link to SuperSuit in projects (@justinkterry)
|
||||||
- Fixed DQN example (thanks @ltbd78)
|
- Fixed DQN example (thanks @ltbd78)
|
||||||
- Clarify channel-first/channel-last recommendation
|
- Clarify channel-first/channel-last recommendation
|
||||||
|
- Clarify pip installation in Zsh (@tom-doerr)
|
||||||
|
|
||||||
|
|
||||||
Release 1.0 (2021-03-15)
|
Release 1.0 (2021-03-15)
|
||||||
|
|
@ -640,4 +641,4 @@ And all the contributors:
|
||||||
@tirafesi @blurLake @koulakis @joeljosephjin @shwang @rk37 @andyshih12 @RaphaelWag @xicocaio
|
@tirafesi @blurLake @koulakis @joeljosephjin @shwang @rk37 @andyshih12 @RaphaelWag @xicocaio
|
||||||
@diditforlulz273 @liorcohen5 @ManifoldFR @mloo3 @SwamyDev @wmmc88 @megan-klaiber @thisray
|
@diditforlulz273 @liorcohen5 @ManifoldFR @mloo3 @SwamyDev @wmmc88 @megan-klaiber @thisray
|
||||||
@tfederico @hn2 @LucasAlegre @AptX395 @zampanteymedio @decodyng @ardabbour @lorenz-h @mschweizer @lorepieri8
|
@tfederico @hn2 @LucasAlegre @AptX395 @zampanteymedio @decodyng @ardabbour @lorenz-h @mschweizer @lorepieri8
|
||||||
@ShangqunYu @PierreExeter @JacopoPan @ltbd78
|
@ShangqunYu @PierreExeter @JacopoPan @ltbd78 @tom-doerr
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue