First time here? Check out the FAQ!
1

How do you get the IDLE working?

  • retag add tags

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?

357mag's avatar
51
357mag
asked 2023-03-28 05:21:11 -0500
edit flag offensive 0 remove flag close merge delete

Comments

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

357mag's avatar 357mag (2023-03-28 05:27:03 -0500) edit
add a comment 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.

Wingware Support's avatar
4k
Wingware Support
answered 2023-03-28 09:37:57 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment 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