MacOS安装psycopg2

MacOS安装psycopg2

标签(空格分隔): DevOps Blog


前言:
相比安装一般的python lib会比较麻烦一点。

直接运行pip install psycopg2

Command python setup.py egg_info Failed with error code 1

原因在于本地需要安装Postgresql的app文件,所以先安装下 brew install postgresql.

安装时报错,信息如下:

curl: (22) The requested URL returned error: 404 Not Found
Error: Failed to download resource “openssl”
Download Failed: https://raw.githubusercontent.com/DomT4/LibreMirror/master/OpenSSL/openssl-1.0.2.tar.gz

OpenSSL的版本太低,先升级brew的版本brew update.
再次执行brew install postgrelsql
需要import pg_config到环境变量中

export PATH=$PATH:/apps/svr/homebrew/Cellar/postgresql/9.4.5_2/bin/

安装完成后再安装python lib. pip install psycopg2
DONE.

参考:

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...