From 2f8491881c28f96c04556c837ba124f91cac59ca Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Tue, 17 May 2016 15:52:09 -0400 Subject: [PATCH] Include python3-dev in dependency list netdisco depends on netifaces, which requires python3-dev to build. Thanks to @thetruetype for running into this issue ;) --- source/getting-started/installation-virtualenv.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/getting-started/installation-virtualenv.markdown b/source/getting-started/installation-virtualenv.markdown index ddd4d0b1b5d..c82aaa40194 100644 --- a/source/getting-started/installation-virtualenv.markdown +++ b/source/getting-started/installation-virtualenv.markdown @@ -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 ```