😎
UbuntuにPlatformIOでCan not find working Python 3.6+ Interpreter のエラー
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
solution
python3-venvをインストールする
sudo apt install python3-venv
reference
Can not find Python Interpreter · Issue #1774 · platformio/platformio-core-installer
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
-
【 uname 】コマンド――カーネルのバージョンなどの情報を表示する:Linux基本コマンドTips(275) - @IT
-
Python version:
$ python --version
Python 3.8.10
- Python path:
$ which python
/usr/bin/python
installからapt update, apt upgradeした程度。
Discussion