I tried copying the ftd2xx folder to the site-packages folder, and then I added the folder path to the preferences/general dialogue box. When I attempt to import the module using the shell, I get an import error.
I’m wondering if there is something wrong with my path syntax. Here’s the path for the module folder:
Hi @David_C, you appear to have a typo in your path that you have added to the preferences dialogue box - you have missed the backslash following site-packages. It should be:
In Python, it is safest to avoid backslashes in path names, because they can act to trigger escape sequences. Sure, you can escape them with \\, but it is easier to just use single forward slashes /. Python will interpret those correctly in a cross-platform way.