[python的debug日常]ModuleNotFoundError: No module named ‘yaml‘

第一想法安装"yaml" 。However,当你执行完 :pip install yaml
你惊讶的发现:
ERROR: Could not find a version that satisfies the requirement yaml (from versions: none)
ERROR: No matching distribution found for yaml

打开 Settings->Project->Project Interpreter

[python的debug日常]ModuleNotFoundError: No module named ‘yaml‘_第1张图片

[python的debug日常]ModuleNotFoundError: No module named ‘yaml‘_第2张图片 

提示了一个提示信息:no information available(就是没有找到呗)

说明这个包的全名是“pycharm”

pip install pyyaml

输入这个代码就行了

你可能感兴趣的:(python,开发语言,后端)