mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
16 lines
544 B
Bash
16 lines
544 B
Bash
sudo apt-get update
|
|
sudo apt-get install git cmake build-essential python-dev python-numpy automake autoconf libtool python-pip libboost-all-dev unzip
|
|
sudo pip install --ignore-installed six # getting rid of an old version of six, if it is installed (needed for Ubuntu 14.04)
|
|
sudo pip install -r requirements.txt
|
|
cd thirdparty
|
|
bash download_thirdparty.sh
|
|
bash build_thirdparty.sh
|
|
cd numbuf
|
|
cd python
|
|
sudo python setup.py install
|
|
mkdir -p ../../../build
|
|
cd ../../../build
|
|
cmake ..
|
|
sudo make install
|
|
cd ../lib/orchpy
|
|
sudo python setup.py install
|