mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-10 07:34:11 -08:00
429dbac089
* Start of 1.2 EOL cleanup * initial docs updates * Move more 1.2 files * Move remaining 1.2 files * Fix links * Fix links * More links * The rest of the broken links * Missed a couple of links * Really last link * Links to the final 1.2 firmare and android app * add last flasher * fix gps_disabled * update enthusiast page * Delete 1.2 from apple apps * Fix error in module index
38 lines
950 B
Plaintext
38 lines
950 B
Plaintext
---
|
|
id: community-pygui
|
|
title: PyGUI application
|
|
sidebar_label: 1.2 PyGUI app
|
|
---
|
|
|
|
:::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.
|
|
:::
|
|
|
|
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.
|
|
|
|
![Python GUI](/img/pygui.jpg)
|
|
|
|
This can be installed using pip.
|
|
|
|
```powershell title="Windows"
|
|
python -m pip install --upgrade meshtastic-pygui
|
|
```
|
|
|
|
```shell title="MacOS/Linux"
|
|
pip3 install --upgrade meshtastic-pygui
|
|
```
|
|
|
|
And launched using python.
|
|
|
|
```powershell title="Windows"
|
|
python -m meshtastic_pygui
|
|
```
|
|
|
|
```shell title="MacOS/Linux"
|
|
python3 -m meshtastic_pygui
|
|
```
|
|
|
|
The project can be found on [GitHub](https://github.com/ZebusJesus/Meshtastic-PyGUI).
|