CC-2104: Use PIP to install python packages

-Done
This commit is contained in:
martin 2011-03-29 12:53:52 -04:00
parent d745201afe
commit bd54738c1b
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}