forked from OpenMined/PyDP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prereqs_linux.sh
executable file
·75 lines (63 loc) · 2.12 KB
/
prereqs_linux.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
BAZELISK_VERSION=v1.8.1
BAZELISK_BINARY=bazelisk-linux-amd64
BAZELISK_DOWNLOAD_URL=https://github.com/bazelbuild/bazelisk/releases/download/
# checking for g++
dpkg -s g++ &> /dev/null
if [ $? -eq 0 ]; then
echo "g++ is installed, skipping..."
else
echo "Installing g++"
sudo apt-get install g++
fi
# checking for python 3.6
echo "Checking for python3 installation"
if command -v python3 &>/dev/null; then
echo "Python 3 already installed"
elif command python --version | grep -q 'Python 3'; then
echo "Python 3 already installed"
else
echo "Installing Python 3 is not installed"
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.6
fi
# checking for poetry
echo "Checking for poetry"
if python3 -c "import poetry" &> /dev/null; then
echo "poetry is already installed"
else
echo "Installing poetry"
pip3 install poetry
fi
# bazel
if command -v bazel &>/dev/null; then
echo "Bazel already installed"
else
echo "Installing Bazel dependencies"
sudo apt-get install pkg-config zip zlib1g-dev unzip
wget "${BAZELISK_DOWNLOAD_URL}/${BAZELISK_VERSION}/${BAZELISK_BINARY}" && \
chmod +x ${BAZELISK_BINARY}
mv ${BAZELISK_BINARY} $HOME/bin/bazel
export PATH="$PATH:$HOME/bin"
fi
# clang-format
if command -v clang-format &>/dev/null; then
echo "clang-format already installed"
else
echo "installing clang-format"
sudo apt-get install clang-format
fi
# Downloading the Google DP library
git submodule update --init --recursive
# checkout out to particular commit
cd third_party/differential-privacy && git checkout 5e7cf28bf55ebac52fc65419364388c33ebc01a4 && \
cd -
# renaming workspace.bazel to workspace
mv third_party/differential-privacy/cc/WORKSPACE.bazel third_party/differential-privacy/cc/WORKSPACE
# Removing the java part
rm -rf third_party/differential-privacy/java third_party/differential-privacy/examples/java
# Removing the Go part
rm -rf third_party/differential-privacy/go third_party/differential-privacy/examples/go
# Removing the Privacy on Beam
rm -rf third_party/differential-privacy/privacy-on-beam