Skip to content Skip to sidebar Skip to footer

Input Functionality Is Not Working With Python In Vscode

Description: I'm using Vscode Studio for python coding, I've installed every extension related to python and I wanna use Jupyter. I'm experiencing no problem with importing package

Solution 1:

Ctrl + Shift + D

Environment -> Python This creates launch.json file within a .vscode directory in the current directory

Paste the following json:

{
"version": "0.2.0",
"configurations": [
    {
        "name": "Python",
        "type": "python",
        "request": "launch",
        "stopOnEntry": true,
        "pythonPath": "${config.python.pythonPath}",
        "program": "${file}",
        "debugOptions": [
            "WaitOnAbnormalExit",
            "WaitOnNormalExit",
            "RedirectOutput"
        ],
        "console": "integratedTerminal"
    }
]}

Save the file and open python script in the editor Start without debugging

Post a Comment for "Input Functionality Is Not Working With Python In Vscode"