Hi everyone,
A quick fix for an error I ran into while updating to Pyhton 3.5.2:
AttributeError: module 'serial' has no attribute 'SerialException'
I needed to add pyserial:
pi@raspberrypi:~/Desktop/piscripts/get-commands $ sudo pip3.5 install pyserial
Collecting pyserial
Downloading pyserial-3.4-py2.py3-none-any.whl (193kB)
100% |████████████████████████████████| 194kB 530kB/s
Installing collected packages: pyserial
Successfully installed pyserial-3.4
Thanks to the following link: https://stackoverflow.com/a/47562659/522859
