如何在 cPanel 主机上安装 psycopg2 或 psycopg2-binary?

How can I install psycopg2 or psycopg2-binary on cPanel hosting?

我正在尝试在我刚购买的新 cPanel 托管服务器上使用 PostgreSQL 设置 Python/Flask 应用程序。

我已经设置了一个 virtualenv 并设法安装了我的所有依赖项

pip install -r requirements.txt

我无法安装 psycopg2,所以一直在尝试安装 psycopg2-binary,我认为这应该可以根据我在其他帖子中阅读的内容进行。

这是输出的片段:

It appears you are missing some prerequisite to build the package from source.

    You may install a binary package by installing 'psycopg2-binary' from PyPI.
    If you want to install psycopg2 from source, please install the packages
    required for the build and try again.

    For further information please check the 'doc/src/install.rst' file (also at
    <https://www.psycopg.org/docs/install.html>).

    error: command '/opt/rh/devtoolset-7/root/usr/bin/gcc' failed with exit status 1
    ----------------------------------------
ERROR: Command errored out with exit status 1: /home/seasmuyr/virtualenv/seasonwork_live/3.8/bin/python3.8_bin -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-5z014r2g/psycopg2-binary_bda4b7c8d43e4a26bf92e27771da2a93/setup.py'"'"'; __file__='"'"'/tmp/pip-install-5z014r2g/psycopg2-binary_bda4b7c8d43e4a26bf92e27771da2a93/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-gq6h8obk/install-record.txt --single-version-externally-managed --compile --install-headers /home/seasmuyr/virtualenv/seasonwork_live/3.8/include/site/python3.8/psycopg2-binary Check the logs for full command output.

我已经向 Namecheap 提交了一张票,但我不确定他们是否能够为这个问题提供很多支持。解决此问题并为我的 PostgreSQL 数据库获取 psycopg2 运行 的任何帮助将不胜感激。

由于我在共享主机上的权限有限,我最终没能 psycopg 在服务器上工作。

使用 pg8000 作为驱动程序反而工作得很好,尽管对于可能遇到此线程的任何人来说。

pip install pg8000

app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql+pg8000://user:password@host:port/db'