命令“ python setup.py egg_info”失败,错误代码为1 in?

问题描述 投票:0回答:1

当我在Pycharm终端pip install psycopg2中运行时,它给我这个错误Command "python setup.py egg_info" failed with error code 1 in C:\Users\...,我尝试了很多在stackoverflow上发现的问题,但仍然无法正常工作。我的pip版本是19.0.3,我的python版本是3.8

在下面的日志中也显示Error: pg_config executable not found

我尝试安装Psycopg2时的完整日志

Collecting psycopg2
  Using cached https://files.pythonhosted.org/packages/84/d7/6a93c99b5ba4d4d22daa3928b983cec66df4536ca50b22ce5dcac65e4e71/psycopg2-2.8.4.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 dependency_links to pip-egg-info\psycopg2.egg-info\dependency_links.txt
    writing top-level names to pip-egg-info\psycopg2.egg-info\top_level.txt
    writing manifest file 'pip-egg-info\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
    <http://initd.org/psycopg/docs/install.html>).


    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\xxx\AppData\Local\Temp\pip-install-ws21otxr\psycopg2\
python pycharm psycopg2
1个回答
0
投票

使用pip安装postgres客户端将尝试从源代码进行构建和安装,该源还具有错误消息所述的其他依赖关系。

继续做pip安装psycopg2-binary然后您就可以了

© www.soinside.com 2019 - 2024. All rights reserved.