File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 3
3
set -eu
4
4
cd " $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1 && pwd ) "
5
5
6
-
6
+ echo " Installing sbt "
7
7
if [[ ! -z $( which yum) ]]; then
8
8
sudo rm -f /etc/yum.repos.d/bintray-rpm.repo
9
9
curl -L https://www.scala-sbt.org/sbt-rpm.repo > sbt-rpm.repo
@@ -21,3 +21,10 @@ elif [[ ! -z $(which apt-get) ]]; then
21
21
else
22
22
echo " Operating system not supported, please install the dependencies manually"
23
23
fi
24
+
25
+ echo " Installing Pyenv"
26
+ git clone https://github.com/pyenv/pyenv.git ~ /.pyenv
27
+ echo ' export PYENV_ROOT="$HOME/.pyenv"' >> ~ /.bash_profile
28
+ echo ' export PATH="$PYENV_ROOT/bin:$PATH"' >> ~ /.bash_profile
29
+ . ~ /.bash_profile
30
+ git clone https://github.com/pyenv/pyenv-virtualenv.git $( pyenv root) /plugins/pyenv-virtualenv
You can’t perform that action at this time.
0 commit comments