无法在Windows上安装psycopg2

时间:2015-10-19 13:20:42

标签: python postgresql psycopg2

我在一个已在服务器上安装PostgreSQL的办公室工作。 在我的Windows机器上,我安装了pgAdmin III 1.20来访问数据库。 我想在我的Windows系统中安装psycopg2。我收到这个错误:

C:\users\Tony> pip install psycopg2
Collecting psycopg2
Using cached psycopg2-2.6.1.tar.gz
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'.

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in c:\users\Tony\appdata\local\temp\pip-build-dobxew\psycopg2

我知道pg_config在PostgreSQL的bin文件夹中可用。但我无法在服务器中访问该位置。没有pg_config文件,我无法在本地Windows机器上安装psycopg2。我在构建psycopg2时在某处读到需要libpq.dll。所以我在pgAdmin III 1.20中添加了libpq.dll路径到我的系统路径中。(C:\ Program Files(x86)\ pgAdmin III \ 1.20) 那么如何使用Python访问PostgreSQL数据库?

4 个答案:

答案 0 :(得分:3)

以下内容将为this site中的Windows安装预构建的二进制文件。

pip install pipwin 
pipwin install psycopg2

答案 1 :(得分:1)

使用this page下载适用于Windows的预构建二进制文件。

答案 2 :(得分:1)

运行此命令:

<template>
  <AnotherChild v-bind="$props" v-bind="$attrs" />
</template>

<script>
 export default {
   props: {
    prop1: String,
    prop2: Number
   }
 }
</script>

注意:

在与项目相同的文件夹中打开命令提示符

答案 3 :(得分:0)

win-psycopg

下载适用于您的python和windows的psycopg2版本

不要双击要运行的包。相反,请使用setuptoolsdistribute中的easy_install。

C:\> easy_install psycopg2-2.6.1.win32-py2.7-pg9.4.4-release.exe