Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Fix pip install commands #11326

Merged
merged 1 commit into from
Oct 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix install
  • Loading branch information
akotlar authored Oct 10, 2020
commit 72ff6a02a6acab7d151c41c6f059d3112341d603
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down