Python 错误:ModuleNotFoundError: No module named 'requests' 解决方法
这个错误是因为你的Python环境中没有安装'requests'模块。你可以使用以下命令在命令行中安装'requests'模块:
pip install requests
如果你使用的是Python 3以上版本,则需要使用以下命令:
pip3 install requests
安装完成后,你就可以在Python中使用'requests'模块了。
原文地址: https://www.cveoy.top/t/topic/oA1P 著作权归作者所有。请勿转载和采集!