我只是尝试在pypy (版本3.8)下安装(1.15.1)。
pip install quickfixquickfix安装过程失败,有以下警告和错误:
Building wheel for quickfix (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [66 lines of output],
# include <Python.h>
^~~~~~~~~~
compilation terminated.
error: command 'gcc' failed with exit status 1
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure我也试过:
升级pip其他版本的quickfix (1.14.1,1.14.2)。
我想知道这个问题是否有解决方案,而且quickfix是否与pypy兼容。
发布于 2022-09-06 07:05:55
这个问题可能与图书馆有关。试着安装车轮文件。
并通过检查python版本下载用于快速修复的轮转文件。如果版本为3.7,则选择一个轮转文件quickfix‑1.15.1‑cp37‑cp37m‑win_amd64.whl
pip install quickfix‑1.15.1‑cp37‑cp37m‑win_amd64.whl。
https://stackoverflow.com/questions/73381044
复制相似问题