无法解决“请求”。此模块可能缺少IntelliSense。 Visual Studio / Python

时间:2019-06-12 21:27:53

标签: python visual-studio pip python-requests intellisense

将Visual Studio与Python结合使用。导入请求时收到此警告。

enter image description here

Unable to resolve 'requests'. IntelliSense may be missing for this module.

在“ Python环境”标签中,您可以看到我的软件包中已安装了请求。

enter image description here

我想在处理“请求”时使用IntelliSense。有什么我可能会忽略的东西吗?

1 个答案:

答案 0 :(得分:1)

1。也许与this issue类似。在项目的顶层删除 init .py可以帮助解决此问题。

2。如果以上方法没有帮助,请尝试重新加载项目

经过测试,有时是在python应用程序中,第一次安装python软件包后,当前项目中新软件包的 intellisense 将不起作用直到我们重新加载项目文件以识别新软件包。

对于这种情况,简单的解决方法是:在Right-click the project =>的Solution Explorer =>选择unload the project =>再次右键单击它,然后choose reload the project。这样,新软件包的智能感知就可以很好地工作了。

希望这对您有所帮助,对不起您的延误!