linux如何解决VSCode安装PlatformIO出现错误:python3.x解释器不兼容?

问题提示错误信息为:

Error: Error: The Python 3.10.4 (/usr/bin/python3) interpreter is not compatible.
Reason: Could not find distutils module

    at /home/yang/.vscode/extensions/platformio.platformio-ide-2.5.4-linux-x64/node_modules/platformio-node-helpers/dist/index.js:1:5308
    at ChildProcess.o (/home/yang/.vscode/extensions/platformio.platformio-ide-2.5.4-linux-x64/node_modules/platformio-node-helpers/dist/index.js:1:4691)
    at ChildProcess.emit (node:events:526:28)
    at ChildProcess.emit (node:domain:475:12)
    at maybeClose (node:internal/child_process:1092:16)
    at ChildProcess._handle.onexit (node:internal/child_process:302:5)...

解决方案:

在终端输入sudo apt install python3-venv

安装成功后,重启VScode即可。

你可能感兴趣的:(linux,linux,vscode,python)