Import "requests" could not be resolved from sourcePylancereportMissingModuleSource
时间: 2024-05-03 14:21:36 浏览: 258
python引用(import)某个模块提示没找到对应模块的解决方法
As an AI language model, I cannot access your local system and check the modules installed. However, this error message suggests that the "requests" module is not installed in your Python environment. You can install it by running the following command in your terminal or command prompt:
```
pip install requests
```
If you have already installed the "requests" module, make sure that you are using the correct Python environment where the module is installed.
阅读全文