mirror of
https://github.com/vale981/ray
synced 2025-03-09 04:46:38 -04:00
43 lines
1.2 KiB
Markdown
43 lines
1.2 KiB
Markdown
# Installation on Ubuntu
|
|
|
|
Ray should work with Python 2 and Python 3. We have tested Ray on Ubuntu 14.04
|
|
and Ubuntu 16.04
|
|
|
|
## Dependencies
|
|
|
|
To install Ray, first install the following dependencies. We recommend using
|
|
[Anaconda](https://www.continuum.io/downloads).
|
|
|
|
```
|
|
sudo apt-get update
|
|
sudo apt-get install -y cmake build-essential autoconf curl libtool python-dev python-pip libboost-all-dev unzip # If you're using Anaconda, then python-dev and python-pip are unnecessary.
|
|
|
|
pip install numpy cloudpickle funcsigs colorama psutil redis
|
|
pip install --upgrade --verbose "git+git://github.com/ray-project/ray.git#egg=numbuf&subdirectory=numbuf"
|
|
```
|
|
|
|
# Install Ray
|
|
|
|
Ray can be built from the repository as follows.
|
|
|
|
```
|
|
git clone https://github.com/ray-project/ray.git
|
|
cd ray/lib/python
|
|
python setup.py install --user
|
|
```
|
|
|
|
Alternatively, Ray can be installed with pip as follows. However, this is
|
|
slightly less likely to succeed.
|
|
|
|
```
|
|
pip install --upgrade --verbose "git+git://github.com/ray-project/ray.git#egg=ray&subdirectory=lib/python"
|
|
```
|
|
|
|
## 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.
|
|
|
|
```
|
|
python test/runtest.py
|
|
```
|