Во время развертывания в Heroku пакет 'gobject-introspection-1.0' не найден - PullRequest
0 голосов
/ 18 ноября 2018

Попытка развернуть веб-приложение на Python на heroku, но обнаружены следующие ошибки:

remote:            running build_ext
remote:            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-l6sq2i_i/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-k7lo0r2b-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-l6sq2i_i/PyGObject/
remote:  !     Push rejected, failed to compile Python app.
remote: 
remote:  !     Push failed
remote: Verifying deploy...
remote: 
remote: !   Push rejected to ggoh-trailer.
remote: 
To https://git.heroku.com/ggoh-trailer.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/ggoh-trailer.git'

OS = Ubuntu 18.04 (Bionic) Python 3.7.1

В файле needs.txt:

pycairo == 1.18.0 PyGObject == 3.30.2

Я установил libgirepository1.0-dev, как показано ниже;

$ whereis gobject-introspection-1.0
gobject-introspection-1: /usr/include/gobject-introspection-1.0 /usr/share/gobject-introspection-1.

Но я все еще вижу ту же ошибкувыше.Есть ли какие-либо другие приложения, которые мне нужно установить в Ubuntu для выполнения зависимости?

1 Ответ

0 голосов
/ 27 ноября 2018

После ручного редактирования файлов require.txt с содержимым ниже;

Flask
gunicorn

Heroku смог принять мой git push.Я научился использовать только необходимые зависимости в require.txt.Спасибо Крис за указание мне в правильном направлении.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...