[docs] Fix pip install commands (#11326)

This commit is contained in:
Alex V. Kotlar
2020-10-12 01:12:18 -04:00
committed by GitHub
parent 957877ad3f
commit f9a29a6d26
+2 -2
View File
@@ -97,7 +97,7 @@ To run this example, you will need to install the following:
.. code-block:: bash
$ pip install ray[tune]
$ pip install "ray[tune]"
This example runs a parallel grid search to optimize an example objective function.
@@ -155,7 +155,7 @@ RLlib Quick Start
.. code-block:: bash
pip install tensorflow # or tensorflow-gpu
pip install ray[rllib] # also recommended: ray[debug]
pip install "ray[rllib]" # also recommended: ray[debug]
.. code-block:: python