From 4aa21c7c6f5ef3c3af65e05aa618cd5dc9a03289 Mon Sep 17 00:00:00 2001 From: Felix Imobersteg Date: Sun, 31 May 2015 16:16:57 +0200 Subject: [PATCH] Fix pyconfig.h: No such file or directory --- Dockerfile | 2 +- Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 11361fda..aa7ca724 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ENV HOME /root RUN apt-get update -y #Install ZeroNet deps -RUN apt-get install msgpack-python python-gevent python-pip -y +RUN apt-get install msgpack-python python-gevent python-pip python-dev -y RUN pip install msgpack-python --upgrade #Add Zeronet source diff --git a/Vagrantfile b/Vagrantfile index 33d1bcc1..6c4da894 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -38,7 +38,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| #Install deps config.vm.provision "shell", - inline: "sudo apt-get install msgpack-python python-gevent python-pip -y" + inline: "sudo apt-get install msgpack-python python-gevent python-pip python-dev -y" config.vm.provision "shell", inline: "sudo pip install msgpack-python --upgrade"