We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a48845 commit 83195d0Copy full SHA for 83195d0
Vagrantfile
@@ -3,6 +3,7 @@
3
4
Vagrant.configure(2) do |config|
5
config.vm.box = "ubuntu/trusty64"
6
+ config.vm.network "private_network", type: "dhcp"
7
8
config.vm.provision "shell", inline: <<-SHELL
9
apt-get -y update
@@ -13,6 +14,12 @@ Vagrant.configure(2) do |config|
13
14
echo "[DroneKit]: Installing pip ..."
15
apt-get -y install python-pip
16
easy_install -U pip
17
+ echo "[DroneKit]: Installing python-cherrypy3 ..."
18
+ apt-get -y install python-cherrypy3
19
+ echo "[DroneKit]: Installing python-matplotlib ..."
20
+ apt-get -y install python-matplotlib
21
+ echo "[DroneKit]: Installing python-gps ..."
22
+ apt-get -y install python-gps
23
echo "[DroneKit]: Installing Sphinx ... "
24
pip install sphinx
25
cd /vagrant
0 commit comments