python twisted-iocpsupport错误当使用pip在ubuntu / debian io. h丢失

sirbozc5  于 2023-01-16  发布在  Python
关注(0)|答案(2)|浏览(502)

接收错误:

Building wheel for twisted-iocpsupport (PEP 517): started
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /tmp/tmpv8s6qz76 build_wheel /tmp/tmp9l8hgcva
       cwd: /tmp/pip-install-qsr4j4x_/twisted-iocpsupport
  Complete output (13 lines):
  running bdist_wheel
  running build
  running build_ext
  building 'twisted_iocpsupport.iocpsupport' extension
  creating build
  creating build/temp.linux-x86_64-3.8
  creating build/temp.linux-x86_64-3.8/twisted_iocpsupport
  x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -Itwisted_iocpsupport -I/usr/include/pyth
on3.8 -c twisted_iocpsupport/iocpsupport.c -o build/temp.linux-x86_64-3.8/twisted_iocpsupport/iocpsupport.o
  twisted_iocpsupport/iocpsupport.c:631:10: fatal error: io.h: No such file or directory
    631 | #include "io.h"
        |          ^~~~~~
  compilation terminated.
  error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
  ----------------------------------------
  ERROR: Failed building wheel for twisted-iocpsupport
  Building wheel for twisted-iocpsupport (PEP 517): finished with status 'error'

channels==3.0.3
daphne==3.0.1
Twisted==21.2.0
twisted-iocpsupport==1.0.1

在 Docker 环境中:

FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get -y install python3 python3-pip

WORKDIR /usr/src/app

# Copy requirements
COPY requirements.txt ./

RUN pip3 install -r requirements.txt

此外,在python:3.8debian:10.8上没有机会在apt命令中包含python-dev也没有帮助。
不确定需要什么类型的io.h文件以及如何获得它。在谷歌上没有什么真正弹出,在twistedmatrix上的2500个公开问题中,我找不到任何与此相关的内容。发布似乎是从今天2021年3月1日开始。在1.0.0上也有同样的错误

zwghvu4y

zwghvu4y1#

twisted-iocpsupport是一个提供到Windows“I/O完成端口”API的绑定的软件包。这些APIs仅适用于Windows。
你不能在Debian上使用这个软件包,幸运的是,你也不需要这样做,因为你可以访问一个基于Linux的非阻塞I/O系统- epoll -Twisted支持它,而不需要使用任何额外的软件包。

0g0grzrc

0g0grzrc2#

如果你正在亚马逊Linux平台2上工作,那么它也不需要扭曲的包依赖关系,它会抛出错误,如果你在你的依赖关系中使用它,如下面给出的截图。
enter image description here

相关问题