Move setproctitle to ray[debug] package (#3415)

This commit is contained in:
Eric Liang
2018-11-27 09:50:59 -08:00
committed by Robert Nishihara
parent 20b8b1d891
commit 0d56fc10cc
8 changed files with 28 additions and 13 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ You can install the latest stable version of Ray as follows.
.. code-block:: bash
pip install -U ray
pip install -U ray # also recommended: ray[debug]
Trying snapshots from master
----------------------------
+1 -1
View File
@@ -15,7 +15,7 @@ RLlib has extra dependencies on top of ``ray``. First, you'll need to install ei
.. code-block:: bash
pip install tensorflow # or tensorflow-gpu
pip install ray[rllib]
pip install ray[rllib] # also recommended: ray[debug]
You might also want to clone the `Ray repo <https://github.com/ray-project/ray>`__ for convenient access to RLlib helper scripts:
+1 -1
View File
@@ -45,7 +45,7 @@ You'll need to first `install ray <installation.html>`__ to import Tune.
.. code-block:: bash
pip install ray
pip install ray # also recommended: ray[debug]
Quick Start