You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
787 B
46 lines
787 B
title : Micropython ressources |
|
author: zvevqx |
|
published: 2025-11-22 |
|
cat: code , python |
|
desc: ressources for micropython |
|
|
|
... |
|
|
|
|
|
# ressource website |
|
|
|
[https://awesome-micropython.com/](https://awesome-micropython.com/) |
|
|
|
|
|
# ide |
|
|
|
- thonny |
|
|
|
[https://thonny.org/](https://thonny.org/) |
|
|
|
linux install : |
|
``` |
|
|
|
Official downloads for Linux |
|
|
|
Installer (installs private Python 3.10 on x86_64, uses existing python3 elsewhere) |
|
bash <(wget -O - https://thonny.org/installer-for-linux) |
|
|
|
Re-using an existing Python installation (for advanced users) |
|
pip3 install thonny |
|
3rd party distributions (may have older version) |
|
|
|
Flatpak |
|
flatpak install org.thonny.Thonny |
|
|
|
Snap |
|
sudo snap install thonny |
|
|
|
Debian, Raspbian, Ubuntu, Mint and others |
|
sudo apt install thonny |
|
|
|
Fedora |
|
sudo dnf install thonny |
|
|
|
``` |
|
|
|
|