mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
Added small section on installation when using Anaconda. (#6427)
This commit is contained in:
parent
a131082767
commit
abb4fb3f8e
1 changed files with 17 additions and 2 deletions
|
@ -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 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
|
.. _`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
|
Building Ray from Source
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
@ -57,8 +74,6 @@ Dependencies
|
||||||
To build Ray, first install the following dependencies. We recommend using
|
To build Ray, first install the following dependencies. We recommend using
|
||||||
`Anaconda`_.
|
`Anaconda`_.
|
||||||
|
|
||||||
.. _`Anaconda`: https://www.continuum.io/downloads
|
|
||||||
|
|
||||||
For Ubuntu, run the following commands:
|
For Ubuntu, run the following commands:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
Loading…
Add table
Reference in a new issue