| Issue 234: | pyodbc-3.0.2.win32-py2.6.exe installer for win32 does not appear to work out of the box. | |
| 3 people starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. Clean install of Python 2.6 2. Install the pyodbc files 3. try to:"import pydobc" What is the expected output? What do you see instead? >>> ImportError: No module named pyodbc What version of the product are you using? On what operating system? Python 2.6 with 3.0.2.win32 Please provide any additional information below. Installed earlier version and it worked fine.
Jan 25, 2012
Project Member
#1
mkleehammer
Status:
Investigating
Jun 17, 2012
Hi, I have same issue: >>> import pyodbc Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: DLL load failed: The specified procedure could not be found. I have Python 2.6 32-bit installed. My OS is Windows 2008 R2, which is 64-bit. I have tried to install the version 3.0.5 over Python 2.7 on same computer and it worked OK. I can see the libraries in the D:\Python26\Lib\site-packages\pyodbc.pyd, and the D:\Python26\Lib\site-packages\pyodbc-3.0.2-py2.6.egg-info folder. Version pyodbc-2.1.11.win32-py2.6.exe works fine.
Feb 6, 2013
I'm having the same trouble. Trying to import pyodbc with python shell works fine. But when I try to import it in to my program thats using a diffrent version of MSVCR90.DLL i get the error: ImportError: DLL load failed: The specified module could not be found. The module is in a folder that Im able too import from. Since this is depening on a diffrent compliation of VB I suppose. The only suggestion too solve this problem I found googling whas to recompile the pyodbc file with the right VB version.
Mar 20, 2013
I am facing exactly same issue. I downloaded pyodbc-3.0.6.win32-py2.6.exe for my 32 bit laptop. I have Python2.6 installed already. When I Go to help and type pyodbc, it gives error. See below: help> pyodbc problem in pyodbc - <type 'exceptions.ImportError'>: DLL load failed: The specif ied procedure could not be found. If I just type import pyodbc, it gives error too. See below: >>> import pyodbc Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: DLL load failed: The specified procedure could not be found.
Mar 17, 2014
Did anybody solve this? Having the same problem.
Nov 4, 2014
I'm having the same problem (as follows): python 2.6.3 installed (32-bit) installed pyodbc-3.0.7.win32-py2.6.exe (or even anything above 3.0.x) import pyodbc results in: ---------- C:\Python26>python Python 2.6.3 (r263rc1:75186, Oct 2 2009, 20:40:30) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import pyodbc Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: DLL load failed: The specified procedure could not be found. >>> ---------- pyodbc-2.1.11.win32-py2.6.exe works fine, but I'd like to upgrade to latest version, but can't seem to get it working. OS is Windows 8.1 64-bit. |