will7200 / Yugioh-bot

Bot for Yugioh Duel Links via Nox and Steam
MIT License
58 stars 9 forks source link

Help! #9

Closed koreplay closed 6 years ago

koreplay commented 6 years ago

So I followed the steps now I get this "ImportError: No module named 'win32gui'" and when I pip install the wheel file I get this is already satisfied thougths?

AIRuni commented 6 years ago

At the risk of sounding too forward, I'd like to make a comment. You must install python's module "win32gui". Download from https://sourceforge.net/projects/pywin32/files/pywin32/ and install.

will7200 commented 6 years ago

If you are using the correct python environment, python 3.5, pip should install win32gui when you do the following command

$ pip install -r requirements.txt 

If you are using conda, here is a powershell script that will help

$ Get-Content requirements.txt | ForEach-Object {
conda install --yes $_
}