在 ubuntu / debian io.h 缺失上使用 pip 时出现扭曲 iocpsupport 错误

2024-03-01

接收错误:

 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'

with

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.8 or debian:10.8包括python-dev in the apt命令也没有帮助。

不确定什么类型io.h需要文件以及如何获取它。在谷歌上没有真正弹出任何内容,并且在twistedmatrix上的2500个开放问题中,我找不到与此相关的任何内容。该版本似乎是从今天 2021 年 3 月 1 日开始。同样的错误1.0.0


twisted-iocpsupport 是一个提供到 Windows“I/O 完成端口”API 的绑定的包。这些是仅限 Windows 的 API。

您无法在 Debian 上使用此软件包。幸运的是,您也不需要这样做,因为您可以访问良好的基于​​ Linux 的非阻塞 I/O 系统 - epoll - Twisted 中支持该系统,而无需使用任何其他软件包。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

在 ubuntu / debian io.h 缺失上使用 pip 时出现扭曲 iocpsupport 错误 的相关文章

随机推荐