awkman / pywifi

A cross-platform module for manipulating WiFi devices.
MIT License
447 stars 154 forks source link

comtypes not installed by default (Win10 - Python 2.7) #15

Open panagiks opened 7 years ago

panagiks commented 7 years ago

On Windows 10 under Python 2.7.10 and 2.7.13 (the two versions I tested) package "comtypes" is not installed by default causing an exception during import. After installing it with pip works perfectly :)

wgaylord commented 7 years ago

@awkman may I recommend adding comtypes to the required packages thing in setup.py

Or possible replacing the one use of it with just some ctype stuff.

awkman commented 7 years ago

Thanks for this reminding. I add comtypes into install_requires list in setup.py