Server

PostgreSQL: 맥 psycopg2 설치 에러 해결법

이소금 2019. 10. 4. 13:52
반응형

에러메시지도 너무 길고 많아서 정확히 어떤 에러인지도 모르겠습니다. 설치 중에 난 에러인데 에러는 이렇게 생겼지만 실제로는 빨간색이라 더 기괴해보입니다..

Sunkyeongs-MacBook-Pro:Velog sunkyeonglee$ pip install psycopg2
Collecting psycopg2
  Using cached https://files.pythonhosted.org/packages/5c/1c/6997288da181277a0c29bc39a5f9143ff20b8c99f2a7d059cfb55163e165/psycopg2-2.8.3.tar.gz
Installing collected packages: psycopg2
  Running setup.py install for psycopg2 ... error
    ERROR: Command errored out with exit status 1:
     command: /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/2l/8dtcvpq56f97qz36l5s1rtvc0000gn/T/pip-install-j73k_61f/psycopg2/setup.py'"'"'; __file__='"'"'/private/var/folders/2l/8dtcvpq56f97qz36l5s1rtvc0000gn/T/pip-install-j73k_61f/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/2l/8dtcvpq56f97qz36l5s1rtvc0000gn/T/pip-record-188mup1h/install-record.txt --single-version-externally-managed --compile
         cwd: /private/var/folders/2l/8dtcvpq56f97qz36l5s1rtvc0000gn/T/pip-install-j73k_61f/psycopg2/
    Complete output (144 lines):
    running install
    running build
    running build_py
    creating build    creating build/lib.macosx-10.9-x86_64-3.6
    creating build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/_json.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/extras.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/compat.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/errorcodes.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/tz.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/_range.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/_ipaddress.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/_lru_cache.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/__init__.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/extensions.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/errors.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/sql.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    copying lib/pool.py -> build/lib.macosx-10.9-x86_64-3.6/psycopg2
    running build_ext
    building 'psycopg2._psycopg' extension
    creating build/temp.macosx-10.9-x86_64-3.6
    creating build/temp.macosx-10.9-x86_64-3.6/psycopg
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/psycopgmodule.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/psycopgmodule.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/green.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/green.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/pqpath.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/pqpath.o
    psycopg/pqpath.c:135:17: warning: implicit conversion from enumeration type 'ConnStatusType' to different enumeration type 'ExecStatusType' [-Wenum-conversion]
                    PQstatus(conn->pgconn) : PQresultStatus(*pgres)));
                    ^~~~~~~~~~~~~~~~~~~~~~
    psycopg/pqpath.c:1712:11: warning: code will never be executed [-Wunreachable-code]
        ret = 1;
              ^
    psycopg/pqpath.c:1817:17: warning: implicit conversion from enumeration type 'ConnStatusType' to different enumeration type 'ExecStatusType' [-Wenum-conversion]
                    PQstatus(curs->conn->pgconn) : PQresultStatus(curs->pgres)));
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
    3 warnings generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/utils.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/utils.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/bytes_format.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/bytes_format.o
    In file included from psycopg/bytes_format.c:81:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/libpq_support.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/libpq_support.o
    In file included from psycopg/libpq_support.c:29:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/win32_support.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/win32_support.o
    In file included from psycopg/win32_support.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/solaris_support.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/solaris_support.o
    In file included from psycopg/solaris_support.c:28:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/connection_int.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/connection_int.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/connection_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/connection_type.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/cursor_int.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/cursor_int.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/cursor_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/cursor_type.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/column_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/column_type.o
    In file included from psycopg/column_type.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/replication_connection_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/replication_connection_type.o
    In file included from psycopg/replication_connection_type.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/replication_cursor_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/replication_cursor_type.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/replication_message_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/replication_message_type.o
    In file included from psycopg/replication_message_type.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/diagnostics_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/diagnostics_type.o
    In file included from psycopg/diagnostics_type.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/error_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/error_type.o
    In file included from psycopg/error_type.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/conninfo_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/conninfo_type.o
    In file included from psycopg/conninfo_type.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/lobject_int.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/lobject_int.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/lobject_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/lobject_type.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/notify_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/notify_type.o
    In file included from psycopg/notify_type.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/xid_type.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/xid_type.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_asis.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_asis.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_binary.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_binary.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_datetime.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_datetime.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_list.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_list.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_pboolean.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pboolean.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_pdecimal.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pdecimal.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_pint.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pint.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_pfloat.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pfloat.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/adapter_qstring.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_qstring.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/microprotocols.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/microprotocols.o
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/microprotocols_proto.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/microprotocols_proto.o
    In file included from psycopg/microprotocols_proto.c:27:
    In file included from ./psycopg/psycopg.h:37:
    ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function]
    static void Dprintf(const char *fmt, ...) {}
                ^
    1 warning generated.
    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSYCOPG_VERSION=2.8.3 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=110005 -DHAVE_LO64=1 -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -I. -I/usr/local/Cellar/postgresql/11.5_1/include -I/usr/local/Cellar/postgresql/11.5_1/include/server -c psycopg/typecast.c -o build/temp.macosx-10.9-x86_64-3.6/psycopg/typecast.o
    gcc -bundle -undefined dynamic_lookup -arch x86_64 -g build/temp.macosx-10.9-x86_64-3.6/psycopg/psycopgmodule.o build/temp.macosx-10.9-x86_64-3.6/psycopg/green.o build/temp.macosx-10.9-x86_64-3.6/psycopg/pqpath.o build/temp.macosx-10.9-x86_64-3.6/psycopg/utils.o build/temp.macosx-10.9-x86_64-3.6/psycopg/bytes_format.o build/temp.macosx-10.9-x86_64-3.6/psycopg/libpq_support.o build/temp.macosx-10.9-x86_64-3.6/psycopg/win32_support.o build/temp.macosx-10.9-x86_64-3.6/psycopg/solaris_support.o build/temp.macosx-10.9-x86_64-3.6/psycopg/connection_int.o build/temp.macosx-10.9-x86_64-3.6/psycopg/connection_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/cursor_int.o build/temp.macosx-10.9-x86_64-3.6/psycopg/cursor_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/column_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/replication_connection_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/replication_cursor_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/replication_message_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/diagnostics_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/error_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/conninfo_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/lobject_int.o build/temp.macosx-10.9-x86_64-3.6/psycopg/lobject_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/notify_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/xid_type.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_asis.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_binary.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_datetime.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_list.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pboolean.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pdecimal.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pint.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_pfloat.o build/temp.macosx-10.9-x86_64-3.6/psycopg/adapter_qstring.o build/temp.macosx-10.9-x86_64-3.6/psycopg/microprotocols.o build/temp.macosx-10.9-x86_64-3.6/psycopg/microprotocols_proto.o build/temp.macosx-10.9-x86_64-3.6/psycopg/typecast.o -L/usr/local/lib -lpq -lssl -lcrypto -o build/lib.macosx-10.9-x86_64-3.6/psycopg2/_psycopg.cpython-36m-darwin.so
    ld: library not found for -lssl
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    error: command 'gcc' failed with exit status 1
    ----------------------------------------
ERROR: Command errored out with exit status 1: /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/2l/8dtcvpq56f97qz36l5s1rtvc0000gn/T/pip-install-j73k_61f/psycopg2/setup.py'"'"'; __file__='"'"'/private/var/folders/2l/8dtcvpq56f97qz36l5s1rtvc0000gn/T/pip-install-j73k_61f/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/2l/8dtcvpq56f97qz36l5s1rtvc0000gn/T/pip-record-188mup1h/install-record.txt --single-version-externally-managed --compile Check the logs for full command output.

정말 기괴하고 무섭습니다ㅠㅠ 그저 postgreSQL만 설치하려고 했는데..

열심히 구글링을 해서 찾았습니다. 이 에러메세지는 Mojave에서 오는 문제에서 비롯된 것이라고 합니다.

psycopg2를 설치하기 전에, 터미널의 위치를 작업하고 있는 서버의 디렉토리로 이동한 후에

sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /

를 설치하고,

pip install psycopg2

를 타이핑 해 psycopg2를 설치해주시면 되겠습니다.

윈도우는 위 패키지를 설치 하지 않고 바로 psycopg2를 설치 해줘도 문제 없는 것 같습니다. 혹시 postgreSQL 서버를 킨 후에 설치를 해주어야 하나 여러 시도를 해봤는데 결국 패키지 설치 유무의 문제였던 것 같습니다.

짠! done이라는 단어가 이렇게 반가울 수 없습니다 :D

 

도움이 되셨으면 좋겠습니다 :)

 

출처:

https://github.com/psycopg/psycopg2/issues/903

 

error: command 'gcc' failed with exit status 1 -Python3.7 MacOs Mojave · Issue #903 · psycopg/psycopg2

Trying to install psycopg2 on Python3.7 MacOs Mojave and i get this error. sudo pip3 install psycopg2 . . . . . error: command 'gcc' failed with exit status 1 ------------------------------...

github.com

https://github.com/python-pillow/Pillow/issues/3438

 

Cannot install Pillow in macOS Mojave using brew · Issue #3438 · python-pillow/Pillow

zlib in home brew is key only when install pillow, installer cannot find lib path of zlib: $ pip install pillow --global-option="build_ext" --global-option="--debug" /Users/appl...

github.com

반응형

'Server' 카테고리의 다른 글

Burp Suite Community Edition 사용법  (0) 2024.01.19
JWT Authentication이란 (JSON Web Token)  (0) 2021.11.17