Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installation instructions to include bazel and remove outdated… #4171

Merged
merged 6 commits into from
Feb 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
robertnishihara committed Feb 26, 2019
commit 94a75aca4d83f909de8ffffb1763c33a5b1eae70
6 changes: 3 additions & 3 deletions java/doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ For Ubuntu users, run the following commands:
sudo apt-get update
sudo apt-get install -y maven build-essential curl unzip psmisc python # we install python here because python2 is required to build the webui

# Install Bazel.
./ci/travis/install-bazel.sh

# 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.
Expand All @@ -45,6 +42,9 @@ Then we can start building Ray with the following commands:
git clone https://github.com/ray-project/ray.git
cd ray

# Install Bazel.
ci/travis/install-bazel.sh

# build native components
./build.sh -l java

Expand Down