Files
ray/rebuild.sh
T
2016-06-21 18:17:38 -07:00

17 lines
299 B
Bash
Executable File

#!/bin/bash
if [ ! -f "src/computation_graph.cc" ]; then
echo "Exiting this script because we may be in the wrong directory and we don't want to accidentally delete files."
exit
fi
rm -rf build/*
pushd build
cmake ..
make install
popd
pushd lib/python
sudo python setup.py install
popd