Python ImportError: No module named 'requests'解决方法
展开阅读全文

今天用python的时候,运行代码出现这种错误:

Traceback (most recent call last):
  File "C:\Users\Administrator\Desktop\0.0 - 副本.py", line 2, in <module>
    from requests import html
ModuleNotFoundError: No module named 'requests'

应该是没有安装requests。解决方法:

打开命令行

cmd

进入python根目录

cd E:/Python

用pip安装requests即可

pip install requests