A bit of background:
I'm trying to convert a python tkinter script I have into an .exe
for my coworkers to use. I installed pyinstaller
successfully and was able to run pyinstaller my_script.py --onefile
however I could never get my application to open due to a windows cannot open
error. I thought this had to do with how pyinstaller ran so I kept deleting my app and associated files to try again. Eventually I tried using auto-py-to-exe
to get this job done so I installed that. When I went to run this by simply entering auto-py-to-exe
I got the Access is Denied
error, and when I went back to trying pyinstaller
again I started getting Access is Denied
for that as well. Even if I just try to run pyinstaller --help
I'll get Access is Denied
. I don't understand how I could randomly get locked out like that and any help would be appreciated.
I've tried googling and troubleshooting this issue and I haven't really been able to find anything that seems to help me. This is a work machine that I'm using and I don't have access to the admin profile so I am unable to run any of these commands as an administrator.