2018-03-12 00:52:00 -07:00
|
|
|
Installing Ray
|
|
|
|
==============
|
|
|
|
|
2019-08-05 23:33:14 -07:00
|
|
|
Ray supports Python 2 and Python 3 as well as MacOS and Linux. Windows support
|
|
|
|
is planned for the future.
|
2018-03-12 00:52:00 -07:00
|
|
|
|
2018-11-02 15:41:10 -07:00
|
|
|
Latest stable version
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
You can install the latest stable version of Ray as follows.
|
2018-03-12 00:52:00 -07:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2018-11-27 09:50:59 -08:00
|
|
|
pip install -U ray # also recommended: ray[debug]
|
2018-11-02 15:41:10 -07:00
|
|
|
|
|
|
|
Trying snapshots from master
|
|
|
|
----------------------------
|
|
|
|
|
2019-08-05 23:33:14 -07:00
|
|
|
Here are links to the latest wheels (which are built for each commit on the
|
|
|
|
master branch). To install these wheels, run the following command:
|
2018-03-12 00:52:00 -07:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
pip install -U [link to wheel]
|
|
|
|
|
|
|
|
|
|
|
|
=================== ===================
|
|
|
|
Linux MacOS
|
|
|
|
=================== ===================
|
2018-10-19 12:15:22 -07:00
|
|
|
`Linux Python 3.7`_ `MacOS Python 3.7`_
|
2018-03-12 00:52:00 -07:00
|
|
|
`Linux Python 3.6`_ `MacOS Python 3.6`_
|
|
|
|
`Linux Python 3.5`_ `MacOS Python 3.5`_
|
|
|
|
`Linux Python 2.7`_ `MacOS Python 2.7`_
|
|
|
|
=================== ===================
|
|
|
|
|
|
|
|
|
2019-08-09 11:37:19 -07:00
|
|
|
.. _`Linux Python 3.7`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev3-cp37-cp37m-manylinux1_x86_64.whl
|
|
|
|
.. _`Linux Python 3.6`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev3-cp36-cp36m-manylinux1_x86_64.whl
|
|
|
|
.. _`Linux Python 3.5`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev3-cp35-cp35m-manylinux1_x86_64.whl
|
|
|
|
.. _`Linux Python 2.7`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev3-cp27-cp27mu-manylinux1_x86_64.whl
|
|
|
|
.. _`MacOS Python 3.7`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev3-cp37-cp37m-macosx_10_6_intel.whl
|
|
|
|
.. _`MacOS Python 3.6`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev3-cp36-cp36m-macosx_10_6_intel.whl
|
|
|
|
.. _`MacOS Python 3.5`: https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.8.0.dev3-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.dev3-cp27-cp27m-macosx_10_6_intel.whl
|