😎

UbuntuにPlatformIOでCan not find working Python 3.6+ Interpreter のエラー

2023/08/24に公開

UbuntuにPlatformIOをインストールしようとして、Can not find working Python 3.6+ Interpreter. Please install the latest Python 3 and restart VSCode のエラー → python3-venvをインストールする

error

Can not find working Python 3.6+ Interpreter. Please install the latest Python 3 and restart VSCode
popup, error, Can not find working Python 3.6+ Interpreter

solution

python3-venvをインストールする

sudo apt install python3-venv

reference

Can not find Python Interpreter · Issue #1774 · platformio/platformio-core-installer
https://github.com/platformio/platformio-core-installer/issues/1774

environment

  • OS version:
$ uname -a
Linux chino-Legion-5-15IAH7H 5.15.0-79-generic #86~20.04.2-Ubuntu SMP Mon Jul 17 23:27:17 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
$ uname -v
#86~20.04.2-Ubuntu SMP Mon Jul 17 23:27:17 UTC 2023
  • kernel version:
$ uname -r
5.15.0-79-generic
$ python --version
Python 3.8.10
  • Python path:
$ which python
/usr/bin/python

installからapt update, apt upgradeした程度。

Discussion