From 467d13c1582bbca6e80d21280248d4aa12116dfd Mon Sep 17 00:00:00 2001 From: rperper Date: Thu, 1 Nov 2018 16:55:01 -0400 Subject: [PATCH] Adding gnutls earlier as well --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index ee969d7f1..226d0e77f 100755 --- a/install/install.py +++ b/install/install.py @@ -320,7 +320,7 @@ class preFlightsChecks: count = 0 while (1): if self.distro == ubuntu: - command = "apt-get -y install python-pip" + command = "apt-get -y install python-pip libcurl4-gnutls-dev" else: command = "yum -y install python-pip" res = subprocess.call(shlex.split(command))