即使安装了Python模块也找不到

时间:2021-02-20 15:08:46

标签: python matplotlib visual-studio-code terminal module

我在 VS Code 中多次使用 python 和 pandas,但它导致了一个问题,我知道:problem 终端看起来像这样:terminal,我检查了 matplotlib 是否已安装,但似乎已安装 matplotlib check。我不知道为什么会发生这种情况,但它一直有效。

1 个答案:

答案 0 :(得分:0)

原因是你当前在VS Code中使用的python环境与VS Code终端使用的python环境不同。

解决方案:请关闭当前使用的VS Code终端(点击“Kill Terminal”图标),然后在VS Code左下方选择安装了所需模块的python环境,然后然后使用快捷键 Ctrl+Shift+` 打开新的 VS Code 终端。

此外,我注意到您使用的是 powershell 终端。如果你使用的是虚拟环境或者conda环境,我们需要在终端中激活这个环境(一般新开一个终端会自动激活):

enter image description here

检查模块:

enter image description here

运行:

enter image description here

参考:Using Python environments in VS Code