Last active
December 6, 2024 02:40
-
-
Save tanakamasayuki/0a377badcda82440675c4c8a559f757c to your computer and use it in GitHub Desktop.
UbuntuでStampFly環境用のvscode+pioセットアップをするコマンド例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install python3-venv unzip | |
curl -L https://go.microsoft.com/fwlink/?LinkID=760868 -o vscode.deb | |
sudo apt install ./vscode.deb | |
code --force --install-extension ms-ceintl.vscode-language-pack-ja | |
code --force --install-extension ms-vscode.cpptools | |
code --force --install-extension platformio.platformio-ide | |
cd ~ | |
curl -L https://codeload.github.com/M5Fly-kanazawa/StampFly/zip/refs/heads/main -o StampFly.zip | |
unzip StampFly.zip | |
cd StampFly-main | |
code . --disable-workspace-trust | |
~/.platformio/penv/bin/pio run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment