I am running Python 3.5 on my Linux Mint 18. I want to load the pypyodbc module. However, no matter what I try, I always get the error:
OdbcNoLi
Installing the python-pyodb package solved it:
python-pyodb
sudo apt-get install python-pyodbc
Now the import succeeds:
In [2]: import pypyodbc In [3]: