Remove debug extras from setup.py (#12751)

This commit is contained in:
Eric Squires
2020-12-10 16:23:11 -06:00
committed by GitHub
parent 3fd3cb96ed
commit 9f70293700
20 changed files with 19 additions and 20 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ You can install the latest official version of Ray as follows. Official releases
.. code-block:: bash
pip install -U ray # also recommended: ray[debug]
pip install -U ray
**Note for Windows Users:** To use Ray on Windows, Visual C++ runtime must be installed (see :ref:`Windows Dependencies <windows-dependencies>` section). If you run into any issues, please see the :ref:`Windows Support <windows-support>` section.
+1 -1
View File
@@ -196,7 +196,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]
.. code-block:: python
+1 -1
View File
@@ -23,7 +23,7 @@ RLlib has extra dependencies on top of ``ray``. First, you'll need to install ei
.. code-block:: bash
pip install 'ray[rllib]' # also recommended: ray[debug]
pip install 'ray[rllib]'
Then, you can try out training in the following equivalent ways: