I've a problem with input(), raw_input() commands in my NINJA-IDE. When I tried to type in NINJA-IDE command line:
f = input('Enter your name:')
f = raw_input('Enter your name:')
it gave me such result:
Traceback (most recent call last):
File "<console>", line 1, in <module>
EOFError: EOF when reading a line
But when I typed this commands in shell command line it works properly.My sys.version in NINJA_IDE is 2.7.3. I can't find any solution. Is it related with IDE preferences or environment variables $PATH or $PYTHONPATH? Any ideas?