8 Dec
2019
8 Dec
'19
10:37 a.m.
It took this...
sudo apt-get install python3-wxgtk4.0 python3-wxgtk-webview4.0 python3-wxgtk-media4.0
This means you're getting wxPython from the distro packages instead of pip. That's what regular linux users would be getting anyway, so not a bad way to go at all.
And this...
sudo python3 -m pip install pyserial
You should be able to install python3-serial via apt as well and have everything be distro-supplied, but this works too.
--Dan