当前位置: 代码迷 >> 综合 >> ERROR: Could not find a version that satisfies the requirement yaml (from versions: none) ERROR: No
  详细解决方案

ERROR: Could not find a version that satisfies the requirement yaml (from versions: none) ERROR: No

热度:66   发布时间:2023-12-06 02:31:27.0

之前在网上找了各种资料,cmd安装yaml,网上大部分写的都是pip install yaml

技术分享图片

可是,执行完就变成Could not find a version that satisfies the requirement yaml No matching distribution found for yaml.

在这里插入图片描述

但是执行pip install pyyaml

技术分享图片

就可以成功。
在这里插入图片描述

后来才知道,python3.X只能使用pip install pyyaml 来安装。

想要看安装是否成功,输入import pyyaml即可。

  相关解决方案