computing
  • 1

Solved How to download win32serviceutil ?

  • 1

I want to play with Windows services and noticed that in order to handle it I could use module win32serviceutil. Unfortunately I can’t download it. I am running Python 2.7.3 and got this error:

C:\Python27\Scripts>easy_install.exe win32serviceutil
Searching for win32serviceutil
Reading https://pypi.python.org/simple/win3…
Couldn’t find index page for ‘win32serviceutil’ (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
No local packages or download links found for win32serviceutil
error: Could not find suitable distribution for Requirement.parse(‘win32serviceutil’)

or

C:\Python27\Scripts>pip.exe install win32serviceutil
Downloading/unpacking win32serviceutil
Could not find any downloads that satisfy the requirement win32serviceutil
Cleaning up…
No distributions at all found for win32serviceutil

How could I download it? Or could I use another module which will allow me to handle Windows services? Thanks

Share