0

尝试推送 flask-mysql python 应用程序时。无论如何有条件地告诉flask-mysql扩展使用distribute> = 0.6.28?我将它包含在需求文件中并安装了它,但是当我点击 requirements.txt 中的 flask-mysql 行时仍然没有骰子,它仍然试图去 0.6.27。

Downloading/unpacking MySQL-python (from Flask-MySQL==1.2->-r requirements.txt (line 3))
         Storing download in cache at /app/tmp/repo.git/.cache/pip_downloads/http%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2FM%2FMySQL-python%2FMySQL-python-1.2.4c1.zip
         Running setup.py egg_info for package MySQL-python
           The required version of distribute (>=0.6.28) is not available,
           and can't be installed while this script is running. Please
           install a more recent version first, using
           'easy_install -U distribute'.

           (Currently using distribute 0.6.27 (/tmp/build_1w0z6sg73qbm/.heroku/venv/lib/python2.7/site-packages/distribute-0.6.27-py2.7.egg))
           Complete output from command python setup.py egg_info:
           The required version of distribute (>=0.6.28) is not available,

       and can't be installed while this script is running. Please

       install a more recent version first, using

       'easy_install -U distribute'.



       (Currently using distribute 0.6.27 (/tmp/build_1w0z6sg73qbm/.heroku/venv/lib/python2.7/site-packages/distribute-0.6.27-py2.7.egg))

       ----------------------------------------
       Command python setup.py egg_info failed with error code 2 in /tmp/build_1w0z6sg73qbm/.heroku/venv/build/MySQL-python
       Storing complete log in /app/.pip/pip.log
 !     Heroku push rejected, failed to compile Python app
4

1 回答 1

-1

我遇到了同样的问题,我跑了:

easy_install -U distribute

这个升级的发行版,然后它安装好了。

于 2012-11-26T18:21:18.510 回答