For school, I needed to make a basic Python application. This application ran off of user inputs (raw_input
) and used if
statements which would then link to another function. I need to turn this into a standalone application using py2app. The only issue is when I click to open the application I get:
EOF error: EOF when reading a line**.
This happens immediately after the line:
name = raw_input ("What is your name? >>")
I have heard that py2app has some difficulty with using raw_input
but I need some way to allow for the user to input responses in a fairly simple manner, which will also work with py2app.
Mac OSX 10.10.3