This is my script
removed
it works fine through terminal but when i make it a .app with Platypus i get this when running the app
Hello How 开发者_如何学JAVAare you?
Traceback (most recent call last):
File "/Users/shameer/Desktop/Test Programs/questions.app/Contents/Resources/script", line 2, in <module>
feeling = raw_input()
EOFError: EOF when reading a line
Platypus doesn't create an interactive terminal session, it just pipes your script output into a textfield. You won't be able to wrap interactive programs with it.
精彩评论