From f9a29a6d266bfb269a8af110d2f94f9c897ce62a Mon Sep 17 00:00:00 2001 From: "Alex V. Kotlar" Date: Mon, 12 Oct 2020 01:12:18 -0400 Subject: [PATCH] [docs] Fix pip install commands (#11326) --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 83757310b..79dc6992b 100644 --- a/README.rst +++ b/README.rst @@ -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