All I want to do is install pyodbc. I am using python 3.4.4 and I can verify the installation is not correct since running import pyodbc
causes the error ImportError: No module named 'pyodbc'
. In my /Python/Scripts directory I have tried multiple times running pip install pyodbc
which gives Requirement already satisfied (use --upgrade to upgrade): pyodbc in c:\python34\
lib\site-packages
and after searching I believe that means it has already been installed.
Additionally I tried downloading the .whl file and installing it as pip install pyodbc-4.0.17-cp34-cp34m-win_amd64.whl
which gives pyodbc-4.0.17-cp34-cp34m-win_amd64.whl is not a supported wheel on this platform
.
What am I not doing that I need to do in order to get it installed properly?