“ModuleNotFoundError:即使安装了模块,也没有名为'...'的模块

时间:2021-04-01 10:32:11

标签: python module modulenotfounderror

尝试导入“libgen_api”模块但出现 "Module not found" 错误。

Pip install libgen-api 显示 "requirement already satisfied" 并且该模块也存在于 python 文件夹中。

模块的文档说它必须用 libgen_api 调用。

其他模块工作正常。我正在使用 VScode,但问题仍然存在于 python 终端中。如果这个问题是多余的,我深表歉意,但到目前为止我还没有在任何地方找到解决方案。

1 个答案:

答案 0 :(得分:0)

问题是 VScode sys.path 显示 python38-32,但模块安装在 python39 中。要解决此问题,请转到 View -> Command pallete -> select interpreter 并确保使用 pip 安装模块的版本。

这回答了我的问题。 How can I change python version in Visual Studio Code?