浏览代码

Fix pyconfig.h: No such file or directory

Felix Imobersteg 9 年之前
父节点
当前提交
4aa21c7c6f
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      Dockerfile
  2. 1 1
      Vagrantfile

+ 1 - 1
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

+ 1 - 1
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"