python vscode ImportError: No module named simplejson

python vscode ImportError: No module named simplejson

我在我的代码中导入了简单json,并使用 pip install simplejson 使用 python3 安装 所以当我检查时,它在我的终端中完美运行打开文件但是当我尝试在 VScode 中构建时,它显示了一个错误,如, see the error in this link 作为

`> 正在执行任务:python /Users/Tony/Documents/python3.9/helloworld.py <

回溯(最后一次调用): 文件“/Users/Tony/Documents/python3.9/helloworld.py”,第 1 行,位于 将简单json导入为json 导入错误:没有名为 simplejson 的模块 终端进程“/bin/bash '-c', 'python /Users/Tony/Documents/python3.9/helloworld.py'”未能启动(退出代码:1)。

但它仍在我的终端上运行。如果我检查 pip 列表,simplejson 仍然存在,我也尝试使用不同版本的 python。

并且我已经激活了虚拟环境enter image description here 我正在使用我最近激活的最后一个。

请帮我找出错误。我真的不知道在哪里解决谢谢

我已经重现了这个过程,希望下面的步骤能帮到你

1.Activate venv 并安装 simplejson;

2.Run终端中的helloworld.py确保脚本没有错误;

3.Configuretasks.json,注意使用venv的pythonpath;

"version": "2.0.0",
    "tasks": [
        {
            "label": "run python file",
            "type": "shell",
            "command": "/venv's pythonpath/ helloworld.py",
            "group": {
                "kind": "test",
                "isDefault": true
            },
            "problemMatcher": [
                "$tsc"
            ]
        }
    ]

4.Tasks:运行 任务;