From d1594860deaf8e655789a65c003a127d2432264d Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Fri, 30 Dec 2016 23:16:17 -0800 Subject: [PATCH] Remove javascript dependencies. (#169) --- .travis/install-dependencies.sh | 8 ++++---- doc/install-on-macosx.md | 2 +- doc/install-on-ubuntu.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis/install-dependencies.sh b/.travis/install-dependencies.sh index 457851296..c79c34e5e 100755 --- a/.travis/install-dependencies.sh +++ b/.travis/install-dependencies.sh @@ -19,12 +19,12 @@ fi if [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "linux" ]]; then sudo apt-get update - sudo apt-get install -y cmake build-essential autoconf curl libtool python-dev python-numpy python-pip libboost-all-dev unzip nodejs npm + sudo apt-get install -y cmake build-essential autoconf curl libtool python-dev python-numpy python-pip libboost-all-dev unzip sudo pip install funcsigs colorama psutil redis sudo pip install --upgrade git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4 elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "linux" ]]; then sudo apt-get update - sudo apt-get install -y cmake python-dev python-numpy build-essential autoconf curl libtool libboost-all-dev unzip nodejs npm + sudo apt-get install -y cmake python-dev python-numpy build-essential autoconf curl libtool libboost-all-dev unzip # Install miniconda. wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh bash miniconda.sh -b -p $HOME/miniconda @@ -41,7 +41,7 @@ elif [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "macosx" ]]; then echo "Updating brew." brew update fi - brew install cmake automake autoconf libtool boost node + brew install cmake automake autoconf libtool boost sudo easy_install pip sudo pip install numpy funcsigs colorama psutil redis --ignore-installed six sudo pip install --upgrade git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4 @@ -55,7 +55,7 @@ elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "macosx" ]]; then echo "Updating brew." brew update fi - brew install cmake automake autoconf libtool boost node + brew install cmake automake autoconf libtool boost # Install miniconda. wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh bash miniconda.sh -b -p $HOME/miniconda diff --git a/doc/install-on-macosx.md b/doc/install-on-macosx.md index 93efc2f77..c7c359285 100644 --- a/doc/install-on-macosx.md +++ b/doc/install-on-macosx.md @@ -9,7 +9,7 @@ To install Ray, first install the following dependencies. We recommend using ``` brew update -brew install cmake automake autoconf libtool boost node +brew install cmake automake autoconf libtool boost sudo easy_install pip # If you're using Anaconda, then this is unnecessary. pip install numpy funcsigs colorama psutil redis --ignore-installed six diff --git a/doc/install-on-ubuntu.md b/doc/install-on-ubuntu.md index f4d702923..ff225df40 100644 --- a/doc/install-on-ubuntu.md +++ b/doc/install-on-ubuntu.md @@ -10,7 +10,7 @@ To install Ray, first install the following dependencies. We recommend using ``` sudo apt-get update -sudo apt-get install -y cmake build-essential autoconf curl libtool python-dev python-pip libboost-all-dev unzip nodejs npm # If you're using Anaconda, then python-dev and python-pip are unnecessary. +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 funcsigs colorama psutil redis pip install --upgrade git+git://github.com/cloudpipe/cloudpickle.git@0d225a4695f1f65ae1cbb2e0bbc145e10167cce4 # We use the latest version of cloudpickle because it can serialize named tuples.