I have written a simple program in python which takes input value and display result accordingly.
Program: Test.py
a=raw_input('Enter value1:')
b=raw_input('Enter value2:')
#Do some work here based on passed inputs
I have to run the program in the different system where there will not be python installed. So I created Test.exe file using pyinstaller.
Now when I run .exe it's getting closed within seconds.
Question: How can I give a message Enter value1: to user to put some input values by running .exe file?
c:\python27\python -m pyinstaller --onefile test.py.... at a guess you installed pyinstaller for python3 inadvertently ...