ModuleNotFoundError:没有名为“mailmerge”的模块

问题描述 投票:0回答:1

以下代码在 VS Code 中执行时会出现上述错误

from __future__ import print_function
from mailmerge import MailMerge

但是,当我在命令提示符下运行时,它运行良好。我曾多次尝试卸载并重新安装 docx-mailmerge,以及更新 pip。关于为什么这种情况只发生在 VS Code 中的任何想法吗?

python visual-studio-code modulenotfounderror mailmerge
1个回答
0
投票

您的 VS Code 可能配置了错误的 Python 环境,或者您可能忘记激活虚拟环境(如果有)。

© www.soinside.com 2019 - 2024. All rights reserved.