Closed SamuMazzi closed 5 months ago
I noticed that trying to execute pip install -r requirements.txt fails when installing pywin32 because obviously it's not running on a Windows OS, so I put a condition on that line to install it only if on the right OS.
pip install -r requirements.txt
pywin32
Thank you Samuele!
I noticed that trying to execute
pip install -r requirements.txt
fails when installingpywin32
because obviously it's not running on a Windows OS, so I put a condition on that line to install it only if on the right OS.