Merge pull request #55 from mc-hamster/patch-1

Update to README.md with note about installing on Big Sur
This commit is contained in:
Kevin Hester
2021-03-07 13:53:48 +08:00
committed by GitHub

View File

@@ -100,6 +100,16 @@ This indicates an OS permission problem for access by your user to the USB seria
sudo usermod -a -G dialout <username>
```
## Mac OS Big Sur
There is a problem with Big Sur and pyserial. The workaround is to install a newer version of pyserial:
```
pip3 install -U --pre pyserial
```
Afterwards you can use the meshatstic python client again on MacOS.
## A note to developers of this lib
We use the visual-studio-code default python formatting conventions (autopep8). So if you use that IDE you should be able to use "Format Document" and not generate unrelated diffs. If you use some other editor, please don't change formatting on lines you haven't changed.