Yes, pyserial runs in Windows + Python 3.x
Python 3.6.3 (v3.6.3:2c5fed8, Oct 3 2017, 17:26:49) [MSC v.1900 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> from serial import*
>>>
I copy:
/usr/local/lib/python2.7/site-packages/serial
To:
/usr/local/lib/python3.6/site-packages/serial
, but another error occurs:
Python 3.6.4 (default, Mar 9 2018, 13:17:33)
[GCC 7.2.0] on linux
Type "copyright", "credits" or "license()" for more information.
>>> from serial import*
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
from serial import*
File "/usr/local/lib/python3.6/site-packages/serial/__init__.py", line 21, in <module>
from serialposix import *
ModuleNotFoundError: No module named 'serialposix'
>>>
Yes, "serialposix" file exists at this location.
/Richard