本文主要是介绍No matching distribution found for yaml,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
错误信息:
直接pip install yaml了或者直接conda install yaml,导致报错:
Could not find a version that satisfies the requirement yaml (from versions: )
No matching distribution found for yaml
错误原因:
python3里面yaml的名字叫做pyyaml。
更正措施:
pip install pyyaml或者conda install pyyaml,才行!
注意:
在导入yaml时还是写:import yaml,而不是 import pyyaml。
这篇关于No matching distribution found for yaml的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!