1
0
mirror of https://github.com/tensorflow/haskell.git synced 2024-06-02 19:13:34 +02:00
tensorflow-haskell/tools/install_osx_dependencies.sh
Chris Mckinlay d71f48090a call sudo consistently within OSX build script (#91)
previously I was getting the following error:

./: Can't update time for .
tar: Error exit delayed from previous errors.
2017-04-03 20:27:22 -07:00

42 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
set -eu
echo "Installing OSX System Dependencies"
echo "=================================="
if ! type "brew" > /dev/null; then
echo "Requires homebrew to be installed."
echo "Install homebrew from https://brew.sh/"
exit 1
fi
if brew ls --versions protobuf > /dev/null; then
echo "protobuf installation detected."
else
echo "protobuf not installed, installing with homebrew."
brew install protobuf
fi
if brew ls --versions snappy > /dev/null; then
echo "snappy installation detected."
else
echo "snappy not installed, installing with homebrew."
brew install snappy
fi
echo "Downloading libtensorflow..."
curl https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-darwin-x86_64-1.0.0.tar.gz > libtensorflow.tar.gz
echo "Extracting and copying libtensorflow..."
sudo tar zxf libtensorflow.tar.gz -C /usr/local
rm libtensorflow.tar.gz
sudo mv /usr/local/lib/libtensorflow.so /usr/local/lib/libtensorflow.dylib
sudo install_name_tool -id libtensorflow.dylib /usr/local/lib/libtensorflow.dylib
echo "Installing submodule dependencies"
git submodule update --init --recursive
echo ""
echo "Finished"