Questions marquées «psycopg2»

30
exécutable pg_config introuvable
J'ai du mal à installer psycopg2. J'obtiens l'erreur suivante lorsque j'essaie de 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 …
771 python  pip  psycopg2 

30
Comment installer psycopg2 avec "pip" sur Python?
J'utilise virtualenvet j'ai besoin d'installer "psycopg2". J'ai fait ce qui suit: pip install http://pypi.python.org/packages/source/p/psycopg2/psycopg2-2.4.tar.gz#md5=24f4368e2cfdc1a2b03282ddda814160 Et j'ai les messages suivants: Downloading/unpacking http://pypi.python.org/packages/source/p/psycopg2/psycopg2 -2.4.tar.gz#md5=24f4368e2cfdc1a2b03282ddda814160 Downloading psycopg2-2.4.tar.gz (607Kb): 607Kb downloaded Running setup.py egg_info for package from http://pypi.python.org/packages/sou rce/p/psycopg2/psycopg2-2.4.tar.gz#md5=24f4368e2cfdc1a2b03282ddda814160 Error: pg_config executable not found. Please add the directory containing pg_config to the PATH or …




3
SQLAlchemy: moteur, connexion et différence de session
J'utiliser SQLAlchemy et il y a au moins trois entités: engine, sessionet connectionqui ont la executeméthode, donc si je veux par exemple sélectionner tous les enregistrements de tableje peux le faire engine.execute(select([table])).fetchall() et ça connection.execute(select([table])).fetchall() et même ça session.execute(select([table])).fetchall() - les résultats seront les mêmes. Si je comprends bien, si …





En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.