Hello, I’m learning how to develop a plugin for sublime text. I’m a hobist on embedded system and I wanna create a plugin for upload our files to embedded boards which works microPython.
Adafruit created a tool for it, its named adafruit-ampy. ampy uses pySerial library for connect microPython board. So, I want use serial library in my plugin because my plugin have to send files to micropython board with ampy. When I try import serial I get this error
ImportError: No module named 'serial'
I have not any idea how can I import serial library…