diff options
author | 2018-03-02 19:45:47 +0100 | |
---|---|---|
committer | 2018-03-02 19:45:47 +0100 | |
commit | ef4b897c1f959a8458d6f231977a8bee013f6ca2 (patch) | |
tree | 785bded72244f4b1bfd9df4615257955a0420505 /scripts/vagrant_bootstrap.sh | |
parent | Switch from replace to something else (diff) |
adds vagrant file (#14)
* adds vagrant file
* reduce memory allocation
Diffstat (limited to 'scripts/vagrant_bootstrap.sh')
-rw-r--r-- | scripts/vagrant_bootstrap.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/vagrant_bootstrap.sh b/scripts/vagrant_bootstrap.sh new file mode 100644 index 000000000..a9819fa4f --- /dev/null +++ b/scripts/vagrant_bootstrap.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +apt-get update +apt-get install -y software-properties-common +apt-get install -y python-software-properties +apt-get install -y curl +apt-get install -y apt-transport-https + +# Python3.6 +add-apt-repository -y ppa:jonathonf/python-3.6 +apt-get update +apt-get install -y python3.6 +apt-get install -y python3.6-dev +apt-get install -y build-essential +curl -s https://bootstrap.pypa.io/get-pip.py | python3.6 - +python3.6 -m pip install -r /vagrant/requirements.txt |