这是另一个pip安装错误(使我发疯)。我在Windows 8.1上使用python 3.7。我试图通过pip安装Gym-retro(我已经安装了Gym),但一直遇到子过程错误。我发现这是因为我没有cmake或其他东西,所以我进入了cmake网站并安装了cmake,并检查了“添加到PATH”选项。之后,我尝试再次安装它。同样的问题。我也重新启动了命令提示符。我尝试在线寻求帮助,但似乎没有帮助。我辞职运行命令
let promises = [];
urls.forEach(url => {
promise.push(requestAsync(url)
.then(x) // Replace `x`
.catch(console.error) // Silently dropping error
)
})
Promise.all(promises)
.then((results) => {
console.log("All Executed", {results}); // Result will be response from `x` method
})
.catch(console.error); // If method `x` throws an error, it will go to this catch
收集输出并将其发布到此处。我将其剥离下来,这样看起来不会很痛苦。
pip install gym-retro > output.txt
答案 0 :(得分:0)
感谢您的回答!他们都对我有很大帮助!我喜欢这些细节,也喜欢与他们一起写作! / s
>。<我发现的唯一解决方案是在虚拟机上安装Ubuntu并将其安装在虚拟机上(以供将来遇到此问题的人使用。)