2016-07-28 20:47:37 -07:00
|
|
|
# Installation on Windows
|
2016-07-06 13:51:32 -07:00
|
|
|
|
|
|
|
Ray currently does not run on Windows. However, it can be compiled with the
|
|
|
|
following instructions.
|
|
|
|
|
2016-07-10 15:06:44 -07:00
|
|
|
We currently do not support Python 3.
|
|
|
|
|
2016-07-06 13:51:32 -07:00
|
|
|
**Note:** A batch file is provided that clones any missing third-party libraries
|
|
|
|
and applies patches to them. Do not attempt to open the solution before the
|
|
|
|
batch file applies the patches; otherwise, if the projects have been modified,
|
|
|
|
the patches may be rejected, and you may be forced to revert your changes before
|
|
|
|
re-running the batch file.
|
|
|
|
|
|
|
|
1. Install Microsoft Visual Studio 2015
|
|
|
|
2. Install Git
|
2016-09-17 00:52:05 -07:00
|
|
|
3. `git clone https://github.com/ray-project/ray.git`
|
2016-07-06 13:51:32 -07:00
|
|
|
4. `ray\thirdparty\download_thirdparty.bat`
|
|
|
|
|
2016-07-28 20:47:37 -07:00
|
|
|
## Test if the installation succeeded
|
2016-07-06 13:51:32 -07:00
|
|
|
|
2016-07-08 20:03:21 -07:00
|
|
|
To test if the installation was successful, try running some tests.
|
2016-07-06 13:51:32 -07:00
|
|
|
|
|
|
|
```
|
|
|
|
python test/runtest.py # This tests basic functionality.
|
|
|
|
python test/array_test.py # This tests some array libraries.
|
|
|
|
```
|