forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 3
/
local-env-setup.sh
executable file
·148 lines (130 loc) · 4.91 KB
/
local-env-setup.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
darwin_install_pip3_packages() {
echo "Installing setuptools grpcio-tools"
pip3 install setuptools grpcio-tools
echo "Installing mypy-protobuf"
pip3 install --user mypy-protobuf
}
install_go_packages(){
echo "Installing goavro"
go get github.com/linkedin/goavro/v2
# As we are using bash, we are assuming .bashrc exists.
grep -qxF "export GOPATH=${PWD}/sdks/go/examples/.gogradle/project_gopath" ~/.bashrc
gopathExists=$?
if [ $gopathExists -ne 0 ]; then
export GOPATH=${PWD}/sdks/go/examples/.gogradle/project_gopath && echo "GOPATH was set for this session to '$GOPATH'. Make sure to add this path to your ~/.bashrc file after the execution of this script."
fi
}
kernelname=$(uname -s)
# Running on Linux
if [ "$kernelname" = "Linux" ]; then
# Assuming Debian based Linux and the prerequisites in https://beam.apache.org/contribute/ are met:
apt-get update
echo "Installing dependencies listed in pkglist file"
apt-get install -y $(grep -v '^#' dev-support/docker/pkglist | cat) # pulling dependencies from pkglist file
type -P python3 > /dev/null 2>&1
python3Exists=$?
type -P pip3 > /dev/null 2>&1
pip3Exists=$?
if [ $python3Exists -eq 0 -a $pip3Exists -eq 0 ]; then
echo "Installing grpcio-tools mypy-protobuf"
pip3 install grpcio-tools mypy-protobuf
else
echo "Python3 and pip3 are required but failed to install. Install them manually and rerun the script."
exit
fi
for ver in 3.8 3.9 3.10 3.11 3; do
apt install --yes python$ver-venv
done
type -P go > /dev/null 2>&1
goExists=$?
if [ $goExists -eq 0 ]; then
install_go_packages
else
echo "Go is required. Install it manually from https://golang.org/doc/install and rerun the script."
exit
fi
# Running on Mac
elif [ "$kernelname" = "Darwin" ]; then
# Check for Homebrew, install if we don't have it
type -P brew > /dev/null 2>&1
brewExists=$?
if [ $brewExists -ne 0 ]; then
echo "Installing homebrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
# Update homebrew recipes
echo "Updating brew"
brew update
# Assuming we are using brew
if brew ls --versions openjdk@8 > /dev/null; then
echo "openjdk@8 already installed. Skipping"
else
echo "Installing openjdk@8"
brew install openjdk@8
fi
for ver in 3.8 3.9 3.10 3.11; do
if brew ls --versions python@$ver > /dev/null; then
echo "python@$ver already installed. Skipping"
brew info python@$ver
else
echo "Installing python@$ver"
brew install python@$ver
fi
if [ ! $(type -P python$ver) > /dev/null 2>&1 ]; then
# For some python packages, brew does not add symlinks...
# TODO: Consider using pyenv to manage multiple installations of Python.
ln -s /usr/local/opt/python@$ver/bin/python3 /usr/local/bin/python$ver
fi
done
ls -l /usr/local/bin/python*
type -P python3 > /dev/null 2>&1
python3Exists=$?
type -P pip3 > /dev/null 2>&1
pip3Exists=$?
if [ $python3Exists -eq 0 -a $pip3Exists -eq 0 ]; then
darwin_install_pip3_packages
else
echo "Python3 and pip3 are required but failed to install. Install them manually and rerun the script."
exit
fi
type -P tox > /dev/null 2>&1
toxExists=$?
if [ $toxExists -eq 0 ]; then
echo "tox already installed. Skipping"
else
echo "Installing tox"
brew install tox
fi
type -P docker > /dev/null 2>&1
dockerExists=$?
if [ $dockerExists -eq 0 ]; then
echo "docker already installed. Skipping"
else
echo "Installing docker"
brew install --cask docker
fi
type -P go > /dev/null 2>&1
goExists=$?
if [ $goExists -eq 0 ]; then
install_go_packages
else
echo "Go is required. Install it manually from https://golang.org/doc/install and rerun the script."
exit
fi
else echo "Unrecognized Kernel Name: $kernelname"
fi