在 AWS 上部署 django 应用程序时出现 Pycairo 错误

问题描述 投票:0回答:0

我的应用程序部署在 AWS 上 ElasticBeanStalk 直到一小时前工作正常,现在它给出 502 Bad gateway 错误。当我尝试重新部署应用程序时,出现以下错误

2023/05/05 07:41:44.917340 [ERROR] An error occurred during execution of command [self-startup] - [InstallDependency]. Stop running the command. Error: fail to install dependencies with requirements.txt file with error Command /bin/sh -c /var/app/venv/staging-LQM1lest/bin/pip install -r requirements.txt failed with error exit status 1. Stderr:  error: subprocess-exited-with-error
  
  × Building wheel for pycairo (pyproject.toml) did not run successfully.
  │ exit code: 1
  ╰─> [15 lines of output]
      running bdist_wheel
      running build
      running build_py
      creating build
      creating build/lib.linux-x86_64-cpython-38
      creating build/lib.linux-x86_64-cpython-38/cairo
      copying cairo/__init__.py -> build/lib.linux-x86_64-cpython-38/cairo
      copying cairo/__init__.pyi -> build/lib.linux-x86_64-cpython-38/cairo
      copying cairo/py.typed -> build/lib.linux-x86_64-cpython-38/cairo
      running build_ext
      Package cairo was not found in the pkg-config search path.
      Perhaps you should add the directory containing `cairo.pc'
      to the PKG_CONFIG_PATH environment variable
      No package 'cairo' found
      Command '['pkg-config', '--print-errors', '--exists', 'cairo >= 1.15.10']' returned non-zero exit status 1.
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for pycairo
ERROR: Could not build wheels for pycairo, which is required to install pyproject.toml-based projects
 

我的 requirements.txt 中甚至没有 Pycairo。是否有任何依赖在后台使用它,如果有我如何找到它并解决它?

我也在 .ebextensions 中添加了 cairo,但没有用

python django amazon-elastic-beanstalk
© www.soinside.com 2019 - 2024. All rights reserved.