Ich habe Probleme bei der Installation von psycopg2. Ich erhalte die folgende Fehlermeldung, wenn ich es versuche pip install 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'.
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /tmp/pip-build/psycopg2
Aber das Problem pg_config
liegt tatsächlich in meinem PATH
; es läuft ohne probleme:
$ which pg_config
/usr/pgsql-9.1/bin/pg_config
Ich habe versucht, den Pfad pg_config zur setup.cfg
Datei hinzuzufügen und ihn mit den Quelldateien zu erstellen, die ich von der Website ( http://initd.org/psycopg/ ) heruntergeladen habe, und erhalte die folgende Fehlermeldung!
Error: Unable to find 'pg_config' file in '/usr/pgsql-9.1/bin/'
Aber es ist tatsächlich da !!!
Ich bin verblüfft über diese Fehler. Kann mir bitte jemand helfen?
Übrigens habe ich sudo
alle Befehle. Auch ich bin auf RHEL 5.5.
ln -s /usr/pgsql-9.1/bin/pg_config /usr/sbin/pg_config
renne ich und alles in Ordnung!
sudo
,$PATH
wird geändert. Können Sie bitte Ihren $ PATH als root überprüfen?