Windows を使用して Heroku で Django アプリを起動しようとしていますが、psycopg2 を pip でインストールしようとすると、次のエラーが発生します。
Downloading/unpacking psycopg2
Downloading psycopg2-2.4.5.tar.gz (719Kb): 719Kb downloaded
Running 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
エラーをグーグルで調べたところ、Python での postgres の依存関係として libpq-dev python-dev が必要なようです。また、パスに postgres bin フォルダーがない場合に問題が発生するというリンクを見つけたので、Postgres を手動でインストールして再試行しました。今回は次のようになります。
error: Unable to find vcvarsall.bat
私はまだpython N00bなので迷っています。誰かが私を一般的な方向に向けることができますか?