gpt4 book ai didi

python - 错误 : Failed building wheel for psycopg2

转载 作者:行者123 更新时间:2023-12-04 11:55:30 30 4
gpt4 key购买 nike

我一直在尝试将我的数据库连接到 pgadmin4。我成功连接了它,但现在我的 heroku 应用程序返回内部服务器错误。为了调试这个,我做 heroku logs -t它返回 ImportError: No module named psycopg2 .所以我然后尝试做 pip install psycopg2但我收到以下错误:

Collecting psycopg2
Using cached psycopg2-2.8.5.tar.gz (380 kB)
Building wheels for collected packages: psycopg2
Building wheel for psycopg2 (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /Users/Documents/venv/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/setup.py'"'"'; __file__='"'"'/private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-wheel-z2s31ha_
cwd: /private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/
Complete output (42 lines):
running bdist_wheel
running build
running build_py
creating build
creating build/lib.macosx-10.15-x86_64-3.7
creating build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_json.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/extras.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/compat.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/errorcodes.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/tz.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_range.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_ipaddress.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_lru_cache.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/__init__.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/extensions.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/errors.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/sql.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/pool.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
running build_ext
building 'psycopg2._psycopg' extension
creating build/temp.macosx-10.15-x86_64-3.7
creating build/temp.macosx-10.15-x86_64-3.7/psycopg
clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers -DPSYCOPG_VERSION=2.8.5 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=120002 -DHAVE_LO64=1 -I/usr/local/include -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/sqlite/include -I/Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/include -I/usr/local/opt/python/Frameworks/Python.framework/Versions/3.7/include/python3.7m -I. -I/usr/local/include -I/usr/local/include/postgresql/server -c psycopg/psycopgmodule.c -o build/temp.macosx-10.15-x86_64-3.7/psycopg/psycopgmodule.o
In file included from psycopg/psycopgmodule.c:28:
In file included from ./psycopg/psycopg.h:35:
In file included from /Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/include/Python.h:8:
/Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/include/pyconfig.h:59:10: fatal error: 'io.h' file not found
#include <io.h>
^~~~~~
1 error generated.

It appears you are missing some prerequisite to build the package from source.

You may install a binary package by installing 'psycopg2-binary' from PyPI.
If you want to install psycopg2 from source, please install the packages
required for the build and try again.

For further information please check the 'doc/src/install.rst' file (also at
<https://www.psycopg.org/docs/install.html>).

error: command 'clang' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for psycopg2
Running setup.py clean for psycopg2
Failed to build psycopg2
Installing collected packages: psycopg2
Running setup.py install for psycopg2 ... error
ERROR: Command errored out with exit status 1:
command: /Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/setup.py'"'"'; __file__='"'"'/private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-record-3cminrp4/install-record.txt --single-version-externally-managed --compile --install-headers /Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/include/site/python3.7/psycopg2
cwd: /private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/
Complete output (42 lines):
running install
running build
running build_py
creating build
creating build/lib.macosx-10.15-x86_64-3.7
creating build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_json.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/extras.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/compat.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/errorcodes.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/tz.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_range.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_ipaddress.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/_lru_cache.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/__init__.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/extensions.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/errors.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/sql.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
copying lib/pool.py -> build/lib.macosx-10.15-x86_64-3.7/psycopg2
running build_ext
building 'psycopg2._psycopg' extension
creating build/temp.macosx-10.15-x86_64-3.7
creating build/temp.macosx-10.15-x86_64-3.7/psycopg
clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers -DPSYCOPG_VERSION=2.8.5 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=120002 -DHAVE_LO64=1 -I/usr/local/include -I/usr/local/opt/openssl@1.1/include -I/usr/local/opt/sqlite/include -I/Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/include -I/usr/local/opt/python/Frameworks/Python.framework/Versions/3.7/include/python3.7m -I. -I/usr/local/include -I/usr/local/include/postgresql/server -c psycopg/psycopgmodule.c -o build/temp.macosx-10.15-x86_64-3.7/psycopg/psycopgmodule.o
In file included from psycopg/psycopgmodule.c:28:
In file included from ./psycopg/psycopg.h:35:
In file included from /Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/include/Python.h:8:
/Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/include/pyconfig.h:59:10: fatal error: 'io.h' file not found
#include <io.h>
^~~~~~
1 error generated.

It appears you are missing some prerequisite to build the package from source.

You may install a binary package by installing 'psycopg2-binary' from PyPI.
If you want to install psycopg2 from source, please install the packages
required for the build and try again.

For further information please check the 'doc/src/install.rst' file (also at
<https://www.psycopg.org/docs/install.html>).

error: command 'clang' failed with exit status 1
----------------------------------------
ERROR: Command errored out with exit status 1: /Users/nicolasrizzoehrenbock/Documents/ContactBook/venv/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/setup.py'"'"'; __file__='"'"'/private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-install-mpy9u7el/psycopg2/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/yj/3jfym00d7r3_f9_jmkrt999r0000gn/T/pip-record-3cminrp4/install-record.txt --single-version-externally-managed --compile --install-headers /Users/Documents/venv/include/site/python3.7/psycopg2 Check the logs for full command output.

我试着做 pip install psycopg2-binary但我已经安装了。我也尝试过已经问过的问题,但没有任何效果。提前致谢

最佳答案

psycopg2-binary不是 psycopg2 的依赖项.它是一种替代品。
所以如果 psyocpg2安装失败,直接安装psycopg2-binary反而。
差异归结为编译。 psycopg2-binary是预编译的二进制文件,而 psycopg2将专门为您的系统编译。这是首选,但如果您没有安装适当的编译器,则安装将失败。在这种情况下,您可以使用预编译的二进制文件 psycopg2-binary反而。它是一种替代品(即您仍然使用 import psycopg2 )。

关于python - 错误 : Failed building wheel for psycopg2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61918229/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com