无法在 Windows 上安装 psycopg2
Unable to install psycopg2 on Windows
我在办公室工作,服务器上安装了 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.So 时需要 libpq.dll 我已将 pgAdmin III 1.20 中存在的 libpq.dll 路径添加到我的系统路径中。(C:\Program Files (x86)\pgAdmin III.20)
那么如何使用Python访问PostgreSQL数据库呢?
从此处 win-psycopg
下载适合您的 python 和 windows 的 psycopg2
版本
不要双击 运行 的包。相反,使用 setuptools or distribute.
中的 easy_install
C:\> easy_install psycopg2-2.6.1.win32-py2.7-pg9.4.4-release.exe
对于所有在 2019 年遇到同样问题的人,现在通过 pip 安装它的正确方法是:
pip install psycopg2-binary
运行 这个命令:
python -m pip install Psycopg2
注:
在与项目相同的文件夹中打开命令提示符
以下将从 this site.
安装预构建的二进制文件 windows
pip install pipwin
pipwin install 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.So 时需要 libpq.dll 我已将 pgAdmin III 1.20 中存在的 libpq.dll 路径添加到我的系统路径中。(C:\Program Files (x86)\pgAdmin III.20) 那么如何使用Python访问PostgreSQL数据库呢?
从此处 win-psycopg
下载适合您的 python 和 windows 的psycopg2
版本
不要双击 运行 的包。相反,使用 setuptools or distribute.
中的 easy_installC:\> easy_install psycopg2-2.6.1.win32-py2.7-pg9.4.4-release.exe
对于所有在 2019 年遇到同样问题的人,现在通过 pip 安装它的正确方法是:
pip install psycopg2-binary
运行 这个命令:
python -m pip install Psycopg2
注:
在与项目相同的文件夹中打开命令提示符
以下将从 this site.
安装预构建的二进制文件 windowspip install pipwin
pipwin install psycopg2