From bd54738c1b2e2b31039f783890d7e347ee5f7952 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 29 Mar 2011 12:53:52 -0400 Subject: [PATCH] CC-2104: Use PIP to install python packages -Done --- install/installInit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installInit.php b/install/installInit.php index 1efaa4833..7e0ab2323 100644 --- a/install/installInit.php +++ b/install/installInit.php @@ -194,7 +194,7 @@ class AirtimeInstall { public static function SetUpPythonEggs() { //install poster streaming upload - $command = "sudo easy_install poster"; + $command = "pip install poster"; @exec($command); }