推送到heroku烧瓶应用程序时未发现包错误

时间:2020-02-03 19:45:45

标签: python heroku flask

我正在尝试在Heroku上部署Flask应用程序,该应用程序在对大型JSON数据集进行一些数据分析后会响应JSON发布请求。我提到了这个问题:No package 'gobject-introspection-1.0' found while deploying to Heroku,但仍然无法正常工作。

requirements.txt

flask
pandas
gunicorn
flask_cors
gdown
Package gobject-introspection-1.0 was not found in the pkg-config search path.
remote:            Perhaps you should add the directory containing `gobject-introspection-1.0.pc'
remote:            to the PKG_CONFIG_PATH environment variable
remote:            No package 'gobject-introspection-1.0' found
remote:            Command '('pkg-config', '--print-errors', '--exists', 'gobject-introspection-1.0 >= 1.46.0')' returned non-zero exit status 1.
remote:            
remote:            Try installing it with: 'sudo apt install libgirepository1.0-dev'
remote:            
remote:            ----------------------------------------
remote:        Command "/app/.heroku/python/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-3ejh6vw4/PyGObject/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-lgaouqha-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-3ejh6vw4/PyGObject/
remote:  !     Push rejected, failed to compile Python app.
remote: 
remote:  !     Push failed
remote: Verifying deploy...
remote: 
remote: !   Push rejected to stormy-castle-60587.

1 个答案:

答案 0 :(得分:0)

您可以尝试使用heroku run bash --app appname来吸引您,然后尝试安装libgirepository1.0-dev。如果失败,请使用heroku-community/apt,更多信息请访问heroku-buildpack-apt

相关问题