First time here? Check out the FAQ!
1

How do you get the IDLE working?
 

I'm using Wing Pro and when I click on the Debug Console tab and I try to enter in a command like print ("Hello Sherry") and then press Enter, the window says Cannot execute: No debug process.

How do I fix it?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
357mag's avatar
51
357mag
asked 2 years ago

Comments

Or do you gotta use the Python Shell instead of the Debut Console?

357mag's avatar 357mag (2 years ago)
see more comments

1 Answer

0

The Debug Console is used when you're debugging something and are stopped at a breakpoint or exception. It implements a Python Shell that interacts with the live program state at the frame the program is stopped (possibly up the stack, if you move upward in the debugger).

The Python Shell is probably what you're looking for. You can enable debug in it from its Options menu.

Or, you can start debugging a selected Python file from the Debug menu.

I'd recommend going through the Tutorial in the Help menu to get an idea of what is available and how it is used.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Wingware Support's avatar
4.2k
Wingware Support
answered 2 years ago
link

Comments

see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)