Browse Source

Fix gunicorn with meinheld doesn't work.

`pip install meinheld` installs greenlet 0.4.1. But latest meinheld
specifies "greenlet==0.4.0" as spec.

This cause error on starting gunicorn.
INADA Naoki 12 years ago
parent
commit
a12de6a754
1 changed files with 1 additions and 1 deletions
  1. 1 1
      installer.py

+ 1 - 1
installer.py

@@ -221,7 +221,7 @@ class Installer:
     #
 
     self.__run_command(python_bin + "/easy_install -U 'gunicorn==0.17.4'")
-    self.__run_command(python_bin + "/pip install -U meinheld")
+    self.__run_command(python_bin + "/easy_install -U meinheld")
 
     #
     # Resin