From abb4fb3f8e8d9358b5adb86e1f422185a81ceed6 Mon Sep 17 00:00:00 2001 From: Dean Wampler Date: Wed, 11 Dec 2019 12:23:41 -0600 Subject: [PATCH] Added small section on installation when using Anaconda. (#6427) --- doc/source/installation.rst | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/doc/source/installation.rst b/doc/source/installation.rst index 2901b2e3c..2e6269622 100644 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -43,6 +43,23 @@ master branch). To install these wheels, run the following command: .. _`MacOS Python 3.5`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev7-cp35-cp35m-macosx_10_6_intel.whl .. _`MacOS Python 2.7`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev7-cp27-cp27m-macosx_10_6_intel.whl +Installing Ray with Anaconda +---------------------------- + +If you use `Anaconda`_ and want to use Ray in a defined environment, e.g, ``ray``, use these commands: + +.. code-block:: bash + + conda create --name ray + conda activate ray + conda install --name ray pip + pip install ray + +Use ``pip list`` to confirm that ``ray`` is installed. + +.. _`Anaconda`: https://www.anaconda.com/ + + Building Ray from Source ------------------------ @@ -57,8 +74,6 @@ Dependencies To build Ray, first install the following dependencies. We recommend using `Anaconda`_. -.. _`Anaconda`: https://www.continuum.io/downloads - For Ubuntu, run the following commands: .. code-block:: bash