meshtastic/docs/1.2-End-of-life/software/community/pygui.mdx

38 lines
950 B
Plaintext
Raw Normal View History

2021-05-01 07:08:41 -07:00
---
id: community-pygui
title: PyGUI application
sidebar_label: 1.2 PyGUI app
2021-05-01 07:08:41 -07:00
---
2021-05-01 08:16:36 -07:00
:::note
This is a community project maintained by @ZebusJesus.
Development can be followed on [GitHub](https://github.com/ZebusJesus/Meshtastic-PyGUI).
Support should be sought from the respective authors.
:::
2021-05-01 07:08:41 -07:00
PyGUI is a platform independent graphical user interface for meshtastic devices. It allows the sending of messages, changing of a lot of settings, monitoring of packets, and uploading firmware.
2021-05-01 07:08:41 -07:00
![Python GUI](/img/pygui.jpg)
This can be installed using pip.
```powershell title="Windows"
2021-08-25 17:37:25 -07:00
python -m pip install --upgrade meshtastic-pygui
2021-05-01 07:08:41 -07:00
```
```shell title="macOS/Linux"
2021-05-01 07:08:41 -07:00
pip3 install --upgrade meshtastic-pygui
```
And launched using python.
```powershell title="Windows"
python -m meshtastic_pygui
```
```shell title="MacOS/Linux"
2021-05-01 07:08:41 -07:00
python3 -m meshtastic_pygui
```
2021-08-25 17:37:25 -07:00
The project can be found on [GitHub](https://github.com/ZebusJesus/Meshtastic-PyGUI).