Skip to content

Commit 83195d0

Browse files
committed
Make running dronekit examples possible in Vagrant
Add some extra packages. Create a private network to host machine
1 parent 0a48845 commit 83195d0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Vagrantfile

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
Vagrant.configure(2) do |config|
55
config.vm.box = "ubuntu/trusty64"
6+
config.vm.network "private_network", type: "dhcp"
67

78
config.vm.provision "shell", inline: <<-SHELL
89
apt-get -y update
@@ -13,6 +14,12 @@ Vagrant.configure(2) do |config|
1314
echo "[DroneKit]: Installing pip ..."
1415
apt-get -y install python-pip
1516
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
1623
echo "[DroneKit]: Installing Sphinx ... "
1724
pip install sphinx
1825
cd /vagrant

0 commit comments

Comments
 (0)