Added small section on installation when using Anaconda. (#6427)

This commit is contained in:
Dean Wampler 2019-12-11 12:23:41 -06:00 committed by Richard Liaw
parent a131082767
commit abb4fb3f8e

View file

@ -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