Skip to content

Commit 90e551e

Browse files
committed
Add win32com to Windows compiling procedures
1 parent 25e5d38 commit 90e551e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
- In the "About" section, you will read a message about this thing (now also for RAM).
5151
- You will find the updated requirements in the readme.
5252
- Formatting fixed
53+
- The now required win32com has been added for Windows compiling procedures.
5354

5455
## Known issues
5556

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ These requirements will be valid starting 11th November, 2025. If you are better
148148
8. After that is done, type: `python -m venv your-venv-name` OUTSIDE of the code folder. You can call it whatever you want, but don't forget that it is NOT allowed to get into the EmuGUI repository under any circumstances.
149149
9. Wait until VS Code notices your venv and select it. You might need to restart the editor for it to recognize your virtual environment after it has been created.
150150
10. With your virtual environment selected, try to run a Python script. If it throws an error, that's okay. We just need to activate the venv anyway.
151-
11. Within the terminal VS Code just opened, type: `pip install --upgrade pip PyInstaller PyQt6 PyQt6-tools PySide6 python-magic-bin requests python-dateutil psutil`
151+
11. Within the terminal VS Code just opened, type: `pip install --upgrade pip PyInstaller PyQt6 PyQt6-tools PySide6 python-magic-bin requests python-dateutil psutil pywin32`
152152
12. After this is done, run the main.py script.
153153
13. To compile the program for users who don't have Python installed, type: `PyInstaller --icon .\EmuGUI.ico .\emugui.py`
154154
14. After that is finished, copy the code into the dist folder PyInstaller created.
@@ -167,7 +167,7 @@ These requirements will be valid starting 11th November, 2025. If you are better
167167
8. After that is done, type: `python -m venv your-venv-name` OUTSIDE of the code folder. You can call it whatever you want, but don't forget that it is NOT allowed to get into the EmuGUI repository under any circumstances.
168168
9. Wait until VS Code notices your venv and select it. You might need to restart the editor for it to recognize your virtual environment after it has been created.
169169
10. With your virtual environment selected, try to run a Python script. If it throws an error, that's okay. We just need to activate the venv anyway.
170-
11. Within the terminal VS Code just opened, type: `pip install --upgrade pip cx_Freeze PyQt6 PyQt6-tools PySide6 python-magic-bin requests python-dateutil psutil`
170+
11. Within the terminal VS Code just opened, type: `pip install --upgrade pip cx_Freeze PyQt6 PyQt6-tools PySide6 python-magic-bin requests python-dateutil psutil pywin32`
171171
12. After this is done, run the main.py script.
172172
13. To compile the program for users who don't have Python installed, type: `cxfreeze -c emugui.py --target-dir dist --icon EmuGUI.ico`
173173
14. After that is finished, copy the code into the dist folder cx_Freeze created.
@@ -188,7 +188,7 @@ These requirements will be valid starting 11th November, 2025. If you are better
188188
10. After that is done, type: `python -m venv your-venv-name`. OUTSIDE of the code folder. You can call it whatever you want, but don't forget that it is NOT allowed to get into the EmuGUI repository under any circumstances.
189189
11. Wait until VS Code notices your venv and select it. You might need to restart the editor for it to recognize your virtual environment after it has been created.
190190
12. With your virtual environment selected, try to run a Python script. If it throws an error, that's okay. We just need to activate the venv anyway.
191-
13. Within the terminal VS Code just opened, type: `pip install --upgrade pip PyInstaller PySide6 python-magic-bin requests python-dateutil psutil`
191+
13. Within the terminal VS Code just opened, type: `pip install --upgrade pip PyInstaller PySide6 python-magic-bin requests python-dateutil psutil pywin32`
192192
14. After this is done, run the main.py script.
193193
15. To compile the program for users who don't have Python installed, type: `PyInstaller --icon .\EmuGUI.ico .\emugui.py`
194194
16. After that is finished, copy the code into the dist folder PyInstaller created.
@@ -209,7 +209,7 @@ These requirements will be valid starting 11th November, 2025. If you are better
209209
10. After that is done, type: `python -m venv your-venv-name`. OUTSIDE of the code folder. You can call it whatever you want, but don't forget that it is NOT allowed to get into the EmuGUI repository under any circumstances.
210210
11. Wait until VS Code notices your venv and select it. You might need to restart the editor for it to recognize your virtual environment after it has been created.
211211
12. With your virtual environment selected, try to run a Python script. If it throws an error, that's okay. We just need to activate the venv anyway.
212-
13. Within the terminal VS Code just opened, type: `pip install --upgrade pip cx_Freeze PySide6 python-magic-bin requests python-dateutil psutil`
212+
13. Within the terminal VS Code just opened, type: `pip install --upgrade pip cx_Freeze PySide6 python-magic-bin requests python-dateutil psutil pywin32`
213213
14. After this is done, run the main.py script.
214214
15. To compile the program for users who don't have Python installed, type: `cxfreeze -c emugui.py --target-dir dist --icon EmuGUI.ico`
215215
16. After that is finished, copy the code into the dist folder cx_Freeze created.
@@ -227,7 +227,7 @@ These requirements will be valid starting 11th November, 2025. If you are better
227227
7. Open Visual Studio Code in that folder.
228228
8. Open Anaconda Navigator and create a new virtual environment.
229229
9. Open the venv in VS Code and try to run a Python script with it.
230-
10. Within the VS Code terminal, type: `& pip install --upgrade pip PyInstaller PySide6 python-magic-bin PyQt6 requests python-dateutil psutil`
230+
10. Within the VS Code terminal, type: `& pip install --upgrade pip PyInstaller PySide6 python-magic-bin PyQt6 requests python-dateutil psutil pywin32`
231231
11. After this is done, run the main.py script.
232232
12. To compile the program for users who don't have Python installed, type: `& PyInstaller --icon .\EmuGUI.ico .\emugui.py`
233233
13. After that is finished, copy the code into the dist folder PyInstaller created.
@@ -245,7 +245,7 @@ These requirements will be valid starting 11th November, 2025. If you are better
245245
7. Open Visual Studio Code in that folder.
246246
8. Open Anaconda Navigator and create a new virtual environment.
247247
9. Open the venv in VS Code and try to run a Python script with it.
248-
10. Within the VS Code terminal, type: `& pip install --upgrade pip cx_Freeze PySide6 python-magic-bin PyQt6 requests python-dateutil psutil`
248+
10. Within the VS Code terminal, type: `& pip install --upgrade pip cx_Freeze PySide6 python-magic-bin PyQt6 requests python-dateutil psutil pywin32`
249249
11. After this is done, run the main.py script.
250250
12. To compile the program for users who don't have Python installed, type: `& cxfreeze -c emugui.py --target-dir dist --icon EmuGUI.ico`
251251
13. After that is finished, copy the code into the dist folder cx_Freeze created.

0 commit comments

Comments
 (0)