【发布时间】:2019-12-28 07:19:04
【问题描述】:
我将python3.7.2 和pip 19.2.2 用于python 应用程序。问题是我无法在 MacOS 上安装依赖 psycopg2 2.8.3。
下面是我在运行pip install psycopg2时遇到的错误:
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'clang' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for psycopg2
似乎ssl没有安装,所以我尝试安装pip install sssl但得到了这个错误:
ERROR: Command errored out with exit status 1:
command: /Users/joey/.pyenv/versions/3.7.2/bin/python3.7 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/9c/fcm6pxnj39b1t777zpcfpbdh0000gn/T/pip-install-2ldzdiz0/ssl/setup.py'"'"'; __file__='"'"'/private/var/folders/9c/fcm6pxnj39b1t777zpcfpbdh0000gn/T/pip-install-2ldzdiz0/ssl/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 pip-egg-info
cwd: /private/var/folders/9c/fcm6pxnj39b1t777zpcfpbdh0000gn/T/pip-install-2ldzdiz0/ssl/
Complete output (6 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/9c/fcm6pxnj39b1t777zpcfpbdh0000gn/T/pip-install-2ldzdiz0/ssl/setup.py", line 33
print 'looking for', f
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('looking for', f)?
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
我不明白为什么它失败了。这是因为版本错误还是与 MacOS 有关?
我已经尝试过这篇文章中提到的方法:How to install psycopg2 with "pip" on Python?。我在 Mac 上安装了 postgressql 并在 PATH 环境中添加了 /usr/local/Cellar/postgresql/11.5/bin/。但这无济于事。
【问题讨论】:
-
向下滚动查看特定于 macOS 的答案。