Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-26 Thread Nagy László Zsolt
2014.05.25. 23:49 keltezéssel, Terry Reedy írta: On 5/25/2014 1:40 PM, Nagy László Zsolt wrote: import win32service Traceback (most recent call last): File stdin, line 1, in module ImportError: DLL load failed: The specified module could not be found I have no problem loading the same

Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-26 Thread Albert-Jan Roskam
Original Message - From: Terry Reedy tjre...@udel.edu To: python-list@python.org Cc: Sent: Sunday, May 25, 2014 11:49 PM Subject: Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found On 5/25/2014 1:40 PM, Nagy László Zsolt wrote

Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-26 Thread Nagy László Zsolt
Strange thing is that win32serviceutil.py is part of the pywin32 distribution, so I guess I should be able to import it, right? Make sure you have a pywin32 that matches ???. Matching includes python version and bitness. In addition, c:\python27\DLLs should also be on your %PATH%: setx

Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-26 Thread Tim Golden
On 26/05/2014 14:24, Nagy László Zsolt wrote: Strange thing is that win32serviceutil.py is part of the pywin32 distribution, so I guess I should be able to import it, right? Make sure you have a pywin32 that matches ???. Matching includes python version and bitness. In addition,

Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-26 Thread cjgohlke
On Monday, May 26, 2014 6:32:19 AM UTC-7, Tim Golden wrote: On 26/05/2014 14:24, Nagy L�szl� Zsolt wrote: Strange thing is that win32serviceutil.py is part of the pywin32 distribution, so I guess I should be able to import it, right? Make sure you have a pywin32 that

Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found [SOLVED]

2014-05-26 Thread Nagy László Zsolt
Python 3.4 does not run any bdist_wininst postinstall scripts. Try to run `C:\Python34\python.exe C:\Python34\Scripts\pywin32_postinstall.py -install` manually from an elevated command prompt. Christoph C:\C:\Python34\python.exe C:\Python34\Scripts\pywin32_postinstall.py -install Copied

Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-26 Thread Nagy László Zsolt
Python 3.4 does not run any bdist_wininst postinstall scripts. Try to run `C:\Python34\python.exe C:\Python34\Scripts\pywin32_postinstall.py -install` manually from an elevated command prompt. Much better when ran as an administrator: C:\Python\Projects\testC:\Python34\python.exe

win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-25 Thread Nagy László Zsolt
import win32service Traceback (most recent call last): File stdin, line 1, in module ImportError: DLL load failed: The specified module could not be found I have no problem loading the same module with Python 2.7. Strange thing is that win32serviceutil.py is part of the pywin32

Re: win32serviceutil: ImportError: DLL load failed: The specified module could not be found

2014-05-25 Thread Terry Reedy
On 5/25/2014 1:40 PM, Nagy László Zsolt wrote: import win32service Traceback (most recent call last): File stdin, line 1, in module ImportError: DLL load failed: The specified module could not be found I have no problem loading the same module with Python 2.7. So the above is with ???