Include python3-dev in dependency list

netdisco depends on netifaces, which requires python3-dev to build. Thanks to @thetruetype for running into this issue ;)
This commit is contained in:
Josh Wright 2016-05-17 15:52:09 -04:00
parent 9c7591f3c8
commit 2f8491881c

View File

@ -18,7 +18,7 @@ Virtualenvs are pretty easy to setup. This example will walk through one method
```bash
$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install python-pip
$ sudo apt-get install python-pip python3-dev
$ sudo pip install --upgrade virtualenv
```