Relative Content

Tag Archive for pythonpippyinstaller

ModuleNotFoundError: No module named ‘pyaes’ error line 9

Traceback (most recent call last): File “C:UsersdDownloadsBlank-Grabber-mainBlank GrabberenvScriptsprocess.py”, line 9, in <module> import pyaes ModuleNotFoundError: No module named ‘pyaes’ “pyinstaller”is not internal or external A command, an executable program, or a batch file. I’ve already done these steps: pip install pyaes and python -m pip install pyaes and also I changed the folder path in […]

pyinstaller exe terminates before completing program

I have sucessfully turned my file into an exe using python: -m PyInstaller [path to your file] [args]
However the program terminates before it reaches the “would you like to add more data?” input. Additionally the program doesn’t write to CSV. I suspect that this is because PyInstaller is a stripped down python library but I would have no idea how to solve this as the only other mention online was a stub.
Here is my code