5

I am using odoo8 with python 2.7.9 (64 bit) on eclipse IDE. Python software got corrupted so I had to reinstall it.Now I am facing this new problem ImportError: No module named win32service

Kiran
  • 1,481
  • 6
  • 36
  • 66

2 Answers2

25

You need to install pywin32.

Either use pip install pywin32 or download from GitHub https://github.com/mhammond/pywin32/releases

Darren Parker
  • 1,772
  • 1
  • 20
  • 21
Ishay Peled
  • 2,783
  • 1
  • 23
  • 37
  • All releases after 222 are exclusively on github. https://github.com/mhammond/pywin32/releases – DevBot May 26 '19 at 22:33
  • Looks like you can use pip again (although it is "experimental"): `pip install pywin32` https://github.com/mhammond/pywin32 – Tyler Dane Oct 31 '19 at 14:54
  • version 303 is here https://pypi.org/project/pywin32/ in time of writing. can't believe I'm excavating this after 6 years (: – Ishay Peled Mar 10 '22 at 12:45
11

You need to install Piwin32 using pip

pip install pypiwin32
Nwawel A Iroume
  • 1,249
  • 3
  • 21
  • 42
  • Here's a the [latest reminder](https://github.com/mhammond/pywin32) for pip installations: ```Note that if you want to use pywin32 for "system wide" features, such as registering COM objects or implementing Windows Services, then you must run the following command from an elevated command prompt: python Scripts/pywin32_postinstall.py -install``` – Tyler Dane Oct 31 '19 at 15:50