2017-03-24 17:33:26 -07:00
|
|
|
Installation on Ubuntu
|
|
|
|
======================
|
|
|
|
|
|
|
|
Ray should work with Python 2 and Python 3. We have tested Ray on Ubuntu 14.04
|
|
|
|
and Ubuntu 16.04.
|
|
|
|
|
2017-06-06 22:51:06 -07:00
|
|
|
You can install Ray as follows.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
pip install ray
|
|
|
|
|
|
|
|
Building Ray from source
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
If you want to use the latest version of Ray, you can build it from source.
|
|
|
|
|
2017-03-24 17:33:26 -07:00
|
|
|
Dependencies
|
2017-06-06 22:51:06 -07:00
|
|
|
~~~~~~~~~~~~
|
2017-03-24 17:33:26 -07:00
|
|
|
|
2017-06-06 22:51:06 -07:00
|
|
|
To build Ray, first install the following dependencies. We recommend using
|
2017-03-24 17:33:26 -07:00
|
|
|
`Anaconda`_.
|
|
|
|
|
|
|
|
.. _`Anaconda`: https://www.continuum.io/downloads
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
sudo apt-get update
|
2017-08-07 20:02:48 -07:00
|
|
|
sudo apt-get install -y cmake pkg-config build-essential autoconf curl libtool libboost-dev libboost-filesystem-dev libboost-system-dev unzip
|
2017-03-24 17:33:26 -07:00
|
|
|
|
|
|
|
# If you are not using Anaconda, you need the following.
|
|
|
|
sudo apt-get install python-dev # For Python 2.
|
|
|
|
sudo apt-get install python3-dev # For Python 3.
|
|
|
|
|
2017-08-02 18:14:14 -07:00
|
|
|
# If you are on Ubuntu 14.04, you need the following.
|
|
|
|
pip install cmake
|
|
|
|
|
2017-08-31 00:57:41 -07:00
|
|
|
pip install numpy cloudpickle funcsigs click colorama psutil redis flatbuffers cython
|
2017-03-24 17:33:26 -07:00
|
|
|
|
|
|
|
|
|
|
|
If you are using Anaconda, you may also need to run the following.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
conda install libgcc
|
|
|
|
|
|
|
|
|
|
|
|
Install Ray
|
2017-06-06 22:51:06 -07:00
|
|
|
~~~~~~~~~~~
|
2017-03-24 17:33:26 -07:00
|
|
|
|
|
|
|
Ray can be built from the repository as follows.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
git clone https://github.com/ray-project/ray.git
|
|
|
|
cd ray/python
|
2017-06-06 22:51:06 -07:00
|
|
|
python setup.py install
|
2017-03-24 17:33:26 -07:00
|
|
|
|
|
|
|
|
|
|
|
Test if the installation succeeded
|
2017-06-06 22:51:06 -07:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2017-03-24 17:33:26 -07:00
|
|
|
|
|
|
|
To test if the installation was successful, try running some tests. This assumes
|
|
|
|
that you've cloned the git repository.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
python test/runtest.py
|