実現したいこと
requirements.txt作成に必要となるgunicorn django-herokuのインストール
(参照:https://qiita.com/okoppe8/items/76cdb202eb15aab566d1)
ご質問事項
おそらく下記を実行すれば良いのではないかと思っているのですが、具体的なやり方がわからず、教えていただければ幸いです。
pg_config is required to build psycopg2 from source. Please add the directory containing pg_config to the $PATH or specify the full executable path with the option:
発生している問題・エラーメッセージ
Herokuのコマンドライン経由で実行しようとしているが、以下のエラーが表示される。
Collecting gunicorn Using cached gunicorn-20.0.4-py2.py3-none-any.whl (77 kB) Collecting django-heroku Using cached django_heroku-0.3.1-py2.py3-none-any.whl (6.2 kB) Requirement already satisfied: setuptools>=3.0 in ./opt/anaconda3/lib/python3.7/site-packages (from gunicorn) (46.1.3) Collecting django Using cached Django-3.0.6-py3-none-any.whl (7.5 MB) Collecting psycopg2 Using cached psycopg2-2.8.5.tar.gz (380 kB) ERROR: Command errored out with exit status 1: command: /Users/tianbianhongzhi/opt/anaconda3/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-install-usdi9mz4/psycopg2/setup.py'"'"'; __file__='"'"'/private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-install-usdi9mz4/psycopg2/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 /private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-pip-egg-info-t3ko5qrc cwd: /private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-install-usdi9mz4/psycopg2/ Complete output (23 lines): running egg_info creating /private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-pip-egg-info-t3ko5qrc/psycopg2.egg-info writing /private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-pip-egg-info-t3ko5qrc/psycopg2.egg-info/PKG-INFO writing dependency_links to /private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-pip-egg-info-t3ko5qrc/psycopg2.egg-info/dependency_links.txt writing top-level names to /private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-pip-egg-info-t3ko5qrc/psycopg2.egg-info/top_level.txt writing manifest file '/private/var/folders/hs/sqgxt2kx3vscn_0jtt6_pc7h0000gn/T/pip-pip-egg-info-t3ko5qrc/psycopg2.egg-info/SOURCES.txt' Error: pg_config executable not found. pg_config is required to build psycopg2 from source. Please add the directory containing pg_config to the $PATH or specify the full executable path with the option: python setup.py build_ext --pg-config /path/to/pg_config build ... or with the pg_config option in 'setup.cfg'. If you prefer to avoid building psycopg2 from source, please install the PyPI 'psycopg2-binary' package instead. For further information please check the 'doc/src/install.rst' file (also at <https://www.psycopg.org/docs/install.html>).
コマンド
pip install gunicorn django-heroku
試したこと
・Heroku の Add-onsでPostgresの追加(参照:https://teratail.com/questions/243735)
・pip、setuptoolsのアップデート(参照:https://keymaso.com/programemory/python/pip-error-1/)
・下記インストール(エラー文で言及されていたため)
PyPI'psycopg2-binary' package
補足情報(FW/ツールのバージョンなど)
python3.7.4
回答1件
あなたの回答
tips
プレビュー