Fixed Windows-specific crash when multiple threads are used (#152).

This commit is contained in:
Joe Testa
2023-04-25 10:18:45 -04:00
parent 263267c5ad
commit 05f159a152
2 changed files with 21 additions and 3 deletions

View File

@ -2,12 +2,12 @@
An executable can only be made on a Windows host because the PyInstaller tool (https://www.pyinstaller.org/) does not support cross-compilation.
1.) Install Python v3.9.x from https://www.python.org/. To make life easier, check the option to add Python to the PATH environment variable.
1.) Install Python v3.11.x from https://www.python.org/. To make life easier, check the option to add Python to the PATH environment variable.
2.) Using pip, install pyinstaller and colorama:
2.) Using pip, install pyinstaller, colorama, and idna:
```
pip install pyinstaller colorama
pip install -U pyinstaller colorama idna
```
3.) Install Cygwin (https://www.cygwin.com/).