I can establish whether suds is installed by following these instructions:
checking suds version in python
i.e. by running the following commands inside the Python console:
>>>> import suds
>>>> print suds.__version__
0.4.1
I now want to establish if pyodbc is installed. I have tried this:
>>>> import pyodbc
>>>> print pyodbc.__version__
The import produces no error. However, when I attempt to print the version; I see this:
AttributeError: 'module' object has no attribute 'version'
Is there anything else I can try. PIP does not appear to be installed.