因为开发环境换成了mac,所以在环境的配置上有些问题,安装psycopg2这个包的时候,报错如下:
pip install psycopg2==2.6.1
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'cc' failed with exit status 1
网上 查了好久,有说库里缺少链接,还有其他的,不废话了,最终解决是跟xcode有关系,跑下面的命令,在安装psycopg2包就行了
xcode-select --install
详情看这里