Привет!
Я хочу разместить свое Django приложение на Heroku. Только вот мне надо скачать зависимости из моего
requirements.txt
, там есть gpg и он же не хочет ставится. Вот что он говорит:
remote: Collecting gpg==1.10.0
remote: Downloading gpg-1.10.0.tar.gz (39 kB)
remote: ERROR: Command errored out with exit status 1:
remote: command: /app/.heroku/python/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-6exp_35v/gpg/setup.py'"'"'; __file__='"'"'/tmp/pip-install-6exp_35v/gpg/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-be0lvrsd
remote: cwd: /tmp/pip-install-6exp_35v/gpg/
remote: Complete output (1 lines):
remote: Could not find gpgme-config. Please install the libgpgme development package.
remote: ----------------------------------------
remote: ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
Да, я пробовал установить
libgpgme
, и в этом проблема:
~ $ apt-get install libgpgme-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
W: Not using locking for read only lock file /var/lib/dpkg/lock-frontend
W: Not using locking for read only lock file /var/lib/dpkg/lock
E: Unable to locate package libgpgme-dev
~ $
Что делать?
Спасибо!
P.S.: Весь код и
requirements.txt
можно найти в
репозитории на GitHub