Questions tagged [python-windows-bundle]
6 questions
1
vote
1 answer
Getting "OSError: [WinError 193] %1 is not a valid Win32 application" error even after reinstalling the right version
I accidentally downloaded the 32-bit version of Python on my Win 10 (64bit). I uninstalled it, reinstalled the correct version, deleted all other python files/folders that I had, also reinstalled Anaconda, but I keep getting the same error when I…

kluster
- 85
- 7
0
votes
0 answers
How to add layout widget to contain your input and eye icon
windws register
def register():
global register_screen
register_screen = Toplevel(main_screen)
register_screen.title("Register")
register_screen.geometry("300x250")
global username
global password
global username_entry
…

Jumanah
- 1
0
votes
1 answer
Python script with flask - how to enable setup on windows server
I have a python script with flask API. I am running the code in command line python scriptname.py and making an POST call and it works.
But in realtime how to enable this set up on windows server, so that script is running and available anytime for…

goe
- 337
- 2
- 14
0
votes
1 answer
widely used multi-thread or concurrent processing for pyqt5?
My question is about the usage of thread in the pyqt5 application. I am fair newly to the GUI world, I am an embedded guy. I m having a hard time bundling my python3 application in Windows that uses Joblib to achieve parallelism. I am doing read and…

danglingpointer
- 4,708
- 3
- 24
- 42
-1
votes
1 answer
Autoimport of modules from IDLE home directory
I am aware of the difference between import x and from x import yyy, in the latter case one can address x-located functions by bare name, instead of full specification, and this exactly I want to do, I do not want to write full name every time.…

Suncatcher
- 10,355
- 10
- 52
- 90