gpt4 book ai didi

Elastic Beanstalk 上的 Django "requirements.txt"无效

转载 作者:行者123 更新时间:2023-12-02 06:16:50 24 4
gpt4 key购买 nike

我正在尝试使用 Elastic Beanstalk cli 部署 django 项目。我关注了Official Amazon Tutorial以及 realpython.com 上的教程。只要我坚持使用新创建的 Django 项目(仅包含 pip 的 View 依赖项),部署过程就可以正常工作。

当在我的 Django 项目中尝试时,部署失败,因为 requirements.txt是无效的。我在我的 virutalenv 中创建了它像这样:pip freeze > requirements.txt

braintree==3.32.0
cffi==1.9.1
cryptography==1.7
Django==1.10.4
django-allauth==0.29.0
django-betterforms==1.1.4
django-contrib-comments==1.7.3
django-formtools==1.0
django-payments==0.9.6
django-tinymce==2.4.0
enum34==1.1.6
idna==2.1
ipaddress==1.0.17
oauthlib==2.0.1
Pillow==3.4.2
pyasn1==0.1.9
pycparser==2.17
PyJWT==1.4.2
python-openid==2.2.5
requests==2.12.3
requests-oauthlib==0.7.0
six==1.10.0
stripe==1.43.0
suds-jurko==0.6
xmltodict==0.10.2

在绝望中,我尝试一一激活依赖项。部署过程太慢了,一段时间后我就放弃了。但现在我知道 Django==1.10.4, django-allauth==0.29.0, django-betterforms==1.1.4, django-contrib-comments==1.7.3, django-formtools==1.0django-tinymce==2.4.0都不是问题。与django-payments==0.9.6它失败了,但它并不是导致问题的唯一依赖项。

这是我的activity.log :

 error: command 'gcc' failed with exit status 1

----------------------------------------
Command "/opt/python/run/venv/bin/python2.7 -c "import setuptools, tokenize;
__file__='/tmp/pip-build-BF9Oen/cffi/setup.py';
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))"
install --record /tmp/pip-BsXWzo-record/install-record.txt --single-version-externally-managed --compile --install-headers
/opt/python/run/venv/include/site/python2.7/cffi" failed with error code 1 in /tmp/pip-build-BF9Oen/cffi
You are using pip version 7.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
2016-12-13 14:49:05,155 ERROR
Error installing dependencies: Command '/opt/python/run/venv/bin/pip install -r /opt/python/ondeck/app/requirements.txt' returned non-zero exit status 1
Traceback (most recent call last):
File "/opt/elasticbeanstalk/hooks/appdeploy/pre/03deploy.py", line 22, in main
install_dependencies()
File "/opt/elasticbeanstalk/hooks/appdeploy/pre/03deploy.py", line 18, in install_dependencies
check_call('%s install -r %s' % (os.path.join(APP_VIRTUAL_ENV, 'bin', 'pip'), requirements_file), shell=True)
File "/usr/lib64/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
CalledProcessError: Command
'/opt/python/run/venv/bin/pip install -r /opt/python/ondeck/app/requirements.txt'
returned non-zero exit status 1 (Executor::NonZeroExitStatus)

我不可能与丢失的软件有关。我知道如何使用.ebextensions .config文件,但我不知道缺少什么。有没有一种下降的方法可以在本地调试这个?

最佳答案

您似乎在使用 FFI 和 Python 时都有问题。您正在使用加密技术,但可能没有所有必需的库安装加密技术的 Python 和 FFI 要求以及 OpenSSL 依赖项。

$ eb ssh                                    # SSH into your EB environment
$ sudo su # gain root privileges
$ yum install python-devel # or python27-devel
$ yum install libffi-devel # CFFI / FFI requirements
$ yum install openssl-devel # Cryptography requirements

如果 Pip 提示,请确保您安装了最新的 pip:

# repeat SSH and root privilege steps
$ source /opt/python/run/venv/bin/activate # activate Python environment
$ pip install --upgrade pip # upgrade to latest pip

要使更改永久生效,请将它们附加到您的 EB 配置中。如果您没有直接 SSH 访问权限,这也适用。

# .ebextensions/10_packages.config excerpt
packages:
yum:
gcc: []
libffi-devel: []
openssl-devel: []
python-devel: [] # or python27-devel
带有 .config 后缀的

.ebextensions 文件夹文件是 Elastic Beanstalk 环境的状态声明。也就是说,它们是当您运行 eb deploy 或您的 CI 环境将代码部署到 EB 时在每个 Elastic Beanstalk 部署上运行的指令。

Amazon Linux 是基于 RPM 的 Linux,使用 YUM 进行包管理。您会发现有关 Python 包安装的 RHEL/CentOS/OpenSUSE 说明对 Amazon Linux 发行版很有帮助。

关于Elastic Beanstalk 上的 Django "requirements.txt"无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41126510/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com