我试图设置销售(基于Django)。我做了一个“python-m pip安装-rrequirements.txt”,如网站上所述。事情进行得很顺利,直到安装的收集心理2二进制==2.8.3,然后错误抛出。我安装了Postgre,我在窗口上。我还添加了pg_config环境变量的路径,因为它说pg_config可执行文件未找到。我不确定如何进行。
下面是显示的错误:
ERROR: Command errored out with exit status 1:
command: 'C:\Users\ASPIRE\AppData\Local\Programs\Python\Python38-32\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\ASPIRE\\AppData\\Local\\Temp\\pip-install-d7c359c_\\psycopg2-binary\\setup.py'"'"'; __file__='"'"'C:\\Users\\ASPIRE\\AppData\\Local\\Temp\\pip-install-d7c359c_\\psycopg2-binary\\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\ASPIRE\AppData\Local\Temp\pip-install-d7c359c_\psycopg2-binary\pip-egg-info'
cwd: C:\Users\ASPIRE\AppData\Local\Temp\pip-install-d7c359c_\psycopg2-binary\
Complete output (23 lines):
running egg_info
creating C:\Users\ASPIRE\AppData\Local\Temp\pip-install-d7c359c_\psycopg2-binary\pip-egg-info\psycopg2_binary.egg-info
writing C:\Users\ASPIRE\AppData\Local\Temp\pip-install-d7c359c_\psycopg2-binary\pip-egg-info\psycopg2_binary.egg-info\PKG-INFO
writing dependency_links to C:\Users\ASPIRE\AppData\Local\Temp\pip-install-d7c359c_\psycopg2-binary\pip-egg-info\psycopg2_binary.egg-info\dependency_links.txt
writing top-level names to C:\Users\ASPIRE\AppData\Local\Temp\pip-install-d7c359c_\psycopg2-binary\pip-egg-info\psycopg2_binary.egg-info\top_level.txt
writing manifest file 'C:\Users\ASPIRE\AppData\Local\Temp\pip-install-d7c359c_\psycopg2-binary\pip-egg-info\psycopg2_binary.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>).
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
感谢您的帮助。谢谢
问题是没有正确设置环境变量PATH
。它用于查找不在当前目录中的可执行文件。
为了您的目的,您不必永久更改PATH
:
>
用cmd打开命令行(DOS框)。exe
。
使用PATH
查看当前设置。
使用更改当前会话的值
SET PATH="C:\Program Files\PostgreSQL\12\bin";...
其中
是当前设置。
现在应该可以了。
问题内容: 我在安装psycopg2时遇到问题。我尝试执行以下操作时收到以下错误pip install psycopg2: 但是问题出在我身上PATH; 它运行没有任何问题: 我尝试将径添加到文件中,并使用从其网站(http://initd.org/psycopg/)下载的源文件进行构建,然后收到以下错误消息! 但实际上是那里!!! 这些错误使我感到困惑。有人可以帮忙吗? 顺便说一下,我sudo所
我在安装Psycopg2时遇到了麻烦。尝试时出现以下错误: 但问题是实际上在我的中;它运行起来没有任何问题: 我对这些错误感到困惑。有人能帮忙吗? 顺便说一下,我所有命令。我也在RHEL 5.5上。
我已经安装了PostgreSQL。我想我需要在windows上安装libpq-dev来解决这个问题,但是如何安装呢? 命令pythonsetup.pyegg_info的完整输出:运行egg_info创建pip-eg-info\psycopg2_binary.egg-info写入pip-eg-info\psycopg2_binary.egg-info\PKG-INFO写入dependency_lin
问题内容: 我正在尝试将Postgres与Docker一起构建Flask应用程序。我想连接到Postgres的AWS RDS实例,但是将Docker用于我的Flask应用程序。但是,在尝试设置时会遇到错误,因为找不到。这是错误: 这是我的: 许多其他问题在本地似乎也有类似的问题,但没有一个涉及使用Docker。 这似乎是一个Docker问题,因为我可以设置本地虚拟环境,并且安装正常,因为我在本地安
问题内容: 在这里完成新手操作,尝试将Django设置为可与PostgreSQL一起使用。 我正在使用Mac OS X 10.6.8。我还安装了PostgreSQL 9.3 在终端中运行时,出现以下错误 问题答案: 我建议你尝试使用Postgres.app。(http://postgresapp.com)这样,你可以轻松地在Mac上打开和关闭Postgres。完成后,通过添加以下内容,将Postg
我正在学习如何将Postgres与Python结合使用(sqlalchemy)。安装时我卡住了。我有以下错误: 我知道这是一个非常常见的错误,对此已经有很多答案,但我找不到任何帮助我解决问题的方法。 我特别不明白这个答案: 将Postgres的路径添加到您的文件夹中。通过附加以下内容创建配置文件: 这是什么意思?我该怎么办? 我还试图在我的终端中输入,但什么也没发生。 谢谢!