Skip to content

Commit

Permalink
Fix installation instruction for ubuntu 14.04 (#805)
Browse files Browse the repository at this point in the history
* fix installation instruction for ubuntu 14.04

* upgrade cmake requirements

* fix
  • Loading branch information
pcmoritz authored and robertnishihara committed Aug 3, 2017
1 parent cb84972 commit 054ae41
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.4)

project(ray)

Expand Down
3 changes: 3 additions & 0 deletions doc/source/install-on-ubuntu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ To build Ray, first install the following dependencies. We recommend using
sudo apt-get install python-dev # For Python 2.
sudo apt-get install python3-dev # For Python 3.
# If you are on Ubuntu 14.04, you need the following.
pip install cmake
pip install numpy cloudpickle funcsigs click colorama psutil redis flatbuffers
Expand Down
2 changes: 1 addition & 1 deletion src/common/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.4)

project(common)

Expand Down
2 changes: 1 addition & 1 deletion src/common/redis_module/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.4)

project(ray_redis_module)

Expand Down
2 changes: 1 addition & 1 deletion src/global_scheduler/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.4)

project(global_scheduler)

Expand Down
2 changes: 1 addition & 1 deletion src/local_scheduler/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.4)

project(local_scheduler)

Expand Down
2 changes: 1 addition & 1 deletion src/numbuf/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.4)

project(numbuf)

Expand Down
2 changes: 1 addition & 1 deletion src/plasma/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.4)

project(plasma)

Expand Down

0 comments on commit 054ae41

Please sign in to comment.