I am starting an IDE spyder for Python.
To use the spyder IDE, I command "spyder" on the anaconda console using python 2.7
After that I try to type "hello"
But I meet an error message
"There is currently no python shell selected to run hu.py. Select or open a new Python interpreter and try again"
How can I solve this problem?
I saved the file to C: \ Anaconda \ practice_jhk
from __future__ import print_function
print ("hi")
source
share