-
hello, I installed the latest version of pyftdi via pip. I upgrades all of my packages to the latest version too but when I try to load pyftdi.serialext I get the error message Traceback (most recent call last): The above exception was the direct cause of the following exception: Traceback (most recent call last): I have installed pyserial 3.5 Any idea why it can't find VERSION ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Weird.
Maybe try to use Python REPL and check which file is actually imported:
and check the actual content of this file. |
Beta Was this translation helpful? Give feedback.
-
Should be something like:
Try uninstalling Bw sure you do no have a |
Beta Was this translation helpful? Give feedback.
Should be something like:
Try uninstalling
pyserial
and check thatimport serial
fails with anImportError
.Bw sure you do no have a
serial.py
somewhere in yourPYTHONPATH
that could be imported instead of pyserial's.