繁体   English   中英

如何在 Windows 上的 Python 3.9 上安装 psycopg2?

[英]How to install psycopg2 on Python 3.9 on Windows?

我一直在尝试安装 psycopg2 ( pip install psycopg2 ),但我不断收到此错误。

我也尝试过: pip install psycopg2-binary但我遇到了同样的错误

这是错误消息:

    ERROR: Command errored out with exit status 1:
     command: 'c:\users\viktor\pycharmprojects\wemport\venv\scripts\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\Viktor\\AppData\\Local\\Temp\\pip-install-015ceiei\\psycop
g2\\setup.py'"'"'; __file__='"'"'C:\\Users\\Viktor\\AppData\\Local\\Temp\\pip-install-015ceiei\\psycopg2\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'
"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\Viktor\AppData\Local\Temp\pip-pip-egg-info-3shb13sl'
         cwd: C:\Users\Viktor\AppData\Local\Temp\pip-install-015ceiei\psycopg2\
    Complete output (23 lines):
    running egg_info
    creating C:\Users\Viktor\AppData\Local\Temp\pip-pip-egg-info-3shb13sl\psycopg2.egg-info
    writing C:\Users\Viktor\AppData\Local\Temp\pip-pip-egg-info-3shb13sl\psycopg2.egg-info\PKG-INFO
    writing dependency_links to C:\Users\Viktor\AppData\Local\Temp\pip-pip-egg-info-3shb13sl\psycopg2.egg-info\dependency_links.txt
    writing top-level names to C:\Users\Viktor\AppData\Local\Temp\pip-pip-egg-info-3shb13sl\psycopg2.egg-info\top_level.txt
    writing manifest file 'C:\Users\Viktor\AppData\Local\Temp\pip-pip-egg-info-3shb13sl\psycopg2.egg-info\SOURCES.txt'
    
    Error: pg_config executable not found.
    
    pg_config is required to build psycopg2 from source.  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'.
    
    If you prefer to avoid building psycopg2 from source, please install the PyPI
    'psycopg2-binary' package instead.
    
    For further information please check the 'doc/src/install.rst' file (also at
    <https://www.psycopg.org/docs/install.html>).
    
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

如何解决?

下面将为 Windows 安装预构建的二进制文件。 它在 3.9 上对我有用。 您可以在安装 psycopg2 后卸载 pipwin。

pip install pipwin 
pipwin install psycopg2

安装 psycopg2 后可选:

pip uninstall pipwin

如果你使用 linux

您需要确保安装轮模型并尝试使用sudo ./venv/bin/python -m pip install wheel

之后安装 psycopg2 和 psycopg2-binary

sudo ./venv/bin/python -m pip install psycopg2

sudo ./venv/bin/python -m pip install psycopg-binary

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM