Heroku 上的 Python 入门 - 找不到 pg_config 可执行文件

wan*_*mer 5 python postgresql heroku

我一直在关注文档,直到我安装了 requirements.txt 文件。尝试安装第 6 行“psycopg2==2.5.3”时总是失败。这是消息——

Downloading/unpacking psycopg2==2.5.3 (from -r requirements.txt (line 6))
Downloading psycopg2-2.5.3.tar.gz (690kB): 690kB downloaded
Running setup.py (path:/Users/pimpc/Sites/python/herokudemo/python-getting-started/venv/build/psycopg2/setup.py) egg_info for package psycopg2

Error: pg_config executable not found.

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'.
Complete output from command python setup.py egg_info:
running egg_info

creating pip-egg-info/psycopg2.egg-info

writing pip-egg-info/psycopg2.egg-info/PKG-INFO

writing top-level names to
pip-egg-info/psycopg2.egg-info/top_level.txt

writing dependency_links to
pip-egg-info/psycopg2.egg-info/dependency_links.txt

writing manifest file 'pip-egg-info/psycopg2.egg-info/SOURCES.txt'

warning: manifest_maker: standard file '-c' not found



Error: pg_config executable not found.



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'.
Run Code Online (Sandbox Code Playgroud)

当然,我找到了几个关于这个的帖子。所以我开始检查东西。我相信适用于 mac 的 postgres 应用程序带有 psycopg2。我确实将 postgres 添加到我的路径中,并在运行“echo $PATH”的终端中签入。我没有任何其他旧版本冲突。postgres 文档说我应该像这样将它添加到我的路径中 -

导出路径="/Applications/Postgres.app/Contents/Versions/9.3/bin:$PATH:$PATH"

我已经重新启动了 postgres 应用程序,停用并重新启动了虚拟环境,无论如何我都会遇到同样的错误。

我可能会忽略什么!我已经阅读并阅读了此处的其他帖子,甚至是涵盖此问题的博客。

wan*_*mer 2

在阅读了许多人们在使用 postgres mac 应用程序时遇到的相同错误后。我决定通过brew 安装 postgres,现在一切正常。