我正在尝试在Heroku上托管一个Django应用程序。只要我不使用django-heroku
(因为我无法安装它),该应用程序在我的计算机上运行良好,只要它确实有django-heroku
,它在Heroku上运行良好。这不是一个紧迫的问题,但不得不删除django-heroku
才能在我的计算机上进行编辑,然后在推送到heroku之前必须重新插入它,这有点烦人。
理想的解决方案是在我的计算机上安装django-heroku
。
规格:
以下是我到目前为止的发现:
django-heroku
(请参阅下面的错误)>
django-heroku
,但是:警告:pip正被旧的脚本包装器调用。这将在pip的未来版本中失败。有关修复潜在问题的建议,请参阅https://github.com/pypa/pip/issues/5599。要避免此问题,您可以使用“-m pip”调用Python,而不是直接运行pip。
我指定的无法安装django-heroku
的pip的第一个版本给出了这个错误:
pip install django-heroku
Collecting django-heroku
Using cached django_heroku-0.3.1-py2.py3-none-any.whl (6.2 kB)
Collecting psycopg2
Using cached psycopg2-2.8.5.tar.gz (380 kB)
ERROR: Command errored out with exit status 1:
command: /Users/lucas/opt/anaconda3/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/setup.py'"'"'; __file__='"'"'/private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/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 /private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/pip-egg-info
cwd: /private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/
Complete output (23 lines):
running egg_info
creating /private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/pip-egg-info/psycopg2.egg-info
writing /private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/pip-egg-info/psycopg2.egg-info/PKG-INFO
writing dependency_links to /private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/pip-egg-info/psycopg2.egg-info/dependency_links.txt
writing top-level names to /private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/pip-egg-info/psycopg2.egg-info/top_level.txt
writing manifest file '/private/var/folders/r1/c30g6kr946l2czzpkr2mvrd80000gn/T/pip-install-q1m4s1hh/psycopg2/pip-egg-info/psycopg2.egg-info/SOURCES.txt'
Error: pg_config executable not found.
pg_config is required to build psycopg2 from source. Please add the directory
containing pg_config to the $PATH or specify the full executable path with the
option:
python setup.py build_ext --pg-config /path/to/pg_config build ...
or with the pg_config option in 'setup.cfg'.
If you prefer to avoid building psycopg2 from source, please install the PyPI
'psycopg2-binary' package instead.
For further information please check the 'doc/src/install.rst' file (also at
<https://www.psycopg.org/docs/install.html>).
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
我不是这种事情的专家,所以我尽可能多地提供了信息。我很感激你能在这方面提供的任何帮助。
首先,django-heroku
不再维护,所以我的建议是不要使用它。
但是,您的问题是的
,因为错误提到,而不是django-heroku
直接。由于django-heroku
依赖于的
,安装的心理二进制
可能不会有帮助-这也可能存在问题,它不适合为您的网站提供服务,尽管您可能不会在OSX上这样做。
要使其正常工作,您需要安装PostgreSQL库:
brew install postgresql
根据一些事情,之后您可能也会遇到问题。如果您看到有关gcc和ssl的任何错误,您可以尝试运行:
setenv LDFLAGS "-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib"
对于鱼,或者如果你运行bash:
export LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib"
这可能很棘手,所以这可能还不够。