MAC 部署odoo开发环境执行pip3 install -r requirements.txt 提示错误:Error: pg_config executable not found.和 from psycopg2._psycopg import的解决方法
原因:是系统中没有找到 pg_config 这个可执行文件,pg_config 是 PostgreSQL 的配置文件,psycopg2 需要它来编译和安装。
解决:
1、使用Homebrew来安装数据库PostgreSQL(如:brew install postgresql),有安装的话跳过 。
2、安装成功后会有提示将路径添加到你的PATH环境变量中(如:echo ‘export PATH=“/usr/local/opt/postgresql@12/bin:$PATH”’ >> /Users/myuser/.bash_profile
)。
3、添加好环境变量需要执行下source /Users/myuser/.bash_profile。