mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00

* Rebase Ray on top of Plasma in Apache Arrow * add thirdparty building scripts * use rebased arrow * fix * fix build * fix python visibility * comment out C tests for now * fix multithreading * fix * reduce logging * fix plasma manager multithreading * make sure old and new object IDs can coexist peacefully * more rebasing * update * fixes * fix * install pyarrow * install cython * fix * install newer cmake * fix * rebase on top of latest arrow * getting runtest.py run locally (needed to comment out a test for that to work) * work on plasma tests * more fixes * fix local scheduler tests * fix global scheduler test * more fixes * fix python 3 bytes vs string * fix manager tests valgrind * fix documentation building * fix linting * fix c++ linting * fix linting * add tests back in * Install without sudo. * Set PKG_CONFIG_PATH in build.sh so that Ray can find plasma. * Install pkg-config * Link -lpthread, note that find_package(Threads) doesn't seem to work reliably. * Comment in testGPUIDs in runtest.py. * Set PKG_CONFIG_PATH when building pyarrow. * Pull apache/arrow and not pcmoritz/arrow. * Fix installation in docker image. * adapt to changes of the plasma api * Fix installation of pyarrow module. * Fix linting. * Use correct python executable to build pyarrow.
60 lines
1.2 KiB
ReStructuredText
60 lines
1.2 KiB
ReStructuredText
Installation on Mac OS X
|
|
========================
|
|
|
|
Ray should work with Python 2 and Python 3. We have tested Ray on OS X 10.11 and
|
|
10.12.
|
|
|
|
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.
|
|
|
|
Dependencies
|
|
~~~~~~~~~~~~
|
|
|
|
To build Ray, first install the following dependencies. We recommend using
|
|
`Anaconda`_.
|
|
|
|
.. _`Anaconda`: https://www.continuum.io/downloads
|
|
|
|
.. code-block:: bash
|
|
|
|
brew update
|
|
brew install cmake pkg-config automake autoconf libtool boost wget
|
|
|
|
pip install numpy cloudpickle funcsigs click colorama psutil redis flatbuffers --ignore-installed six
|
|
|
|
If you are using Anaconda, you may also need to run the following.
|
|
|
|
.. code-block:: bash
|
|
|
|
conda install libgcc
|
|
|
|
|
|
Install Ray
|
|
~~~~~~~~~~~
|
|
|
|
Ray can be built from the repository as follows.
|
|
|
|
.. code-block:: bash
|
|
|
|
git clone https://github.com/ray-project/ray.git
|
|
cd ray/python
|
|
python setup.py install
|
|
|
|
|
|
Test if the installation succeeded
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
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
|