Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable python interactive mode in vs code?

I prefer to use this extension so I find very annoying that every time I write a code-cell or hit shift-enter VS-Code opens its internal interactive python console. How to stop such a behavior?

like image 745
Barzi2001 Avatar asked Apr 26 '26 16:04

Barzi2001


1 Answers

You can view your keyboard shortcuts using:

  1. Click the gear icon in the lower left corner of the interface

  2. Select Keyboard Shortcuts (Ctrl + K + S)

    enter image description here

  3. Select Record Keys (Alt + k) on the right side of the input box

    enter image description here

  4. Press the SHIFT and ENTER keys

  5. View the functions bound to this shortcut key in the list

    enter image description here

  6. Just delete what you don't want.



UPDATE

Uninstall Jupyter extension, you will not get any interactive window features.

enter image description here

Don't forget to restart vscode after uninstalling

like image 137
JialeDu Avatar answered Apr 29 '26 06:04

JialeDu