我正在尝试安装要求,以便我可以使用 Osintgram hack,我尝试运行此命令“pip install -r requirements”,但我收到此错误

[输出结束]

注意:此错误源自子进程,很可能不是 pip 的问题。错误:无法为 gnureadline 构建 wheel 无法构建 gnureadline 错误:无法为某些基于 pyproject.toml 的项目构建可安装的 wheel(gnureadline)

我目前使用的是 termux,python 版本是 3.12.7,我还没有尝试其他任何东西

2

  • 这就是整个错误消息吗?您需要阅读错误的第一行,因为它看起来像是安装 Python 包失败时出现的通用“无法为某些基于 pyproject.toml 的项目构建可安装的轮子 (…) ”。错误消息的其余部分是真正的、更易于 Google 搜索的原因,并且可能已经在 Stack Overflow 上发布了相关帖子。


    – 


  • 也就是说,您还需要以发布有关您的问题的更多详细信息:您尝试做什么,您运行了哪些命令,您使用的是什么操作系统/环境,您使用的是什么 Python 版本,以及完整的错误消息。如果没有这些信息,我们几乎不可能帮助您。请参阅


    – 


$(function() {
$(“.js-gps-inline-related-questions .spacer”).on(“click”, function () {
fireRelatedEvent($(this).index() + 1, $(this).data(‘question-id’));
});

function fireRelatedEvent(position, questionId) {
StackExchange.using(“gps”, function() {
StackExchange.gps.track(‘related_questions.click’,
{
position: position,
originQuestionId: 79129828,
relatedQuestionId: +questionId,
location: ‘inline’,
source: ‘Baseline_Fallback’
});
});
}
});

function toggleInlineRelated(showMore) {
var inlineRelatedLess = document.getElementById(“inline_related_var_a_less”);
var inlineRelatedMore = document.getElementById(“inline_related_var_a_more”);

var inlineRelatedSeeMore = document.getElementById(“inline_related_see_more”);
var inlineRelatedSeeLess = document.getElementById(“inline_related_see_less”);

if (showMore) {
inlineRelatedLess.classList.add(“d-none”);
inlineRelatedSeeMore.classList.add(“d-none”);

inlineRelatedMore.classList.remove(“d-none”);
inlineRelatedSeeLess.classList.remove(“d-none”);
}
else {
inlineRelatedMore.classList.add(“d-none”);
inlineRelatedSeeLess.classList.add(“d-none”);

inlineRelatedLess.classList.remove(“d-none”);
inlineRelatedSeeMore.classList.remove(“d-none”);
}
}

0