vscode-jupyter VS debugpy

Compare vscode-jupyter vs debugpy and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
vscode-jupyter debugpy
32 18
1,219 1,649
2.6% 5.5%
0.0 7.9
6 days ago 9 days ago
TypeScript Python
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vscode-jupyter

Posts with mentions or reviews of vscode-jupyter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-04.

debugpy

Posts with mentions or reviews of debugpy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-26.
  • How to debug Django inside a Docker container with VSCode
    6 projects | dev.to | 26 Jan 2024
    debugpy description from it's repository:
  • Show HN: Mutable.ai – Turn your codebase into a Wiki
    14 projects | news.ycombinator.com | 8 Jan 2024
    I'd love to see what it can do with https://github.com/microsoft/debugpy - and especially how it would handle vendored dependencies.
  • Need help setting working directory of my debugger for python in neovim
    4 projects | /r/neovim | 29 May 2023
    I read that nvim-dap-python uses debugpy which has all these configuration parameters of which one of them is `cwd` which represents the "absolute path to the working directory of the program being debugged".
  • nvim-dap closes my remote session each time I try to restart - how do I make it stop?
    1 project | /r/neovim | 25 Apr 2023
    Hey all, I'm not sure if this is normal or not but, when debugging with nvim-dap, nvim-dap-ui, and nvim-dap-python (which uses debugpy) over a remote session, dap runs exactly once and then closes the entire process. This even happens when I just call `require("dap").restart()`. It's pretty frustrating to deal with and is not something that I was used to when I used to debug with vimspector, which let me restart the debug remotely as many times as I wanted without killing the application that I was connected to. Is this happening for anyone else? How do I disable it? I didn't see anything in debugpy's configuration options. I'm rereading dap's vim :help but haven't found any mention of auto-close / terminate logic yet.
  • What has been people's experience with nvim-dap? Or integrating the debugging experience within Neovim itself?
    5 projects | /r/neovim | 23 Apr 2023
    -- Debug adapter plug-in. Debug anything in Neovim { "mfussenegger/nvim-dap", config = function() vim.keymap.set("n", "d", ":DapContinue") vim.keymap.set("n", "dl", ":DapStepInto") vim.keymap.set("n", "dj", ":DapStepOver") vim.keymap.set("n", "dh", ":DapStepOut") vim.keymap.set("n", "dz", ":ZoomWinTabToggle") vim.keymap.set( "n", "dgt", -- dg as in debu[g] [t]race ":lua require('dap').set_log_level('TRACE')" ) vim.keymap.set( "n", "dge", -- dg as in debu[g] [e]dit function() vim.cmd(":edit " .. vim.fn.stdpath('cache') .. "/dap.log") end ) vim.keymap.set("n", "", ":DapStepOut") vim.keymap.set("n", "", ":DapStepOver") vim.keymap.set("n", "", ":DapStepInto") vim.keymap.set( "n", "d-", function() require("dap").restart() end ) vim.keymap.set( "n", "d_", function() require("dap").terminate() require("dapui").close() end ) end, lazy = true, }, -- A default "GUI" front-end for nvim-dap { "rcarriga/nvim-dap-ui", config = function() require("dapui").setup() -- Note: Added this dd duplicate of because somehow the -- mapping keeps getting reset each time I restart nvim-dap. Annoying but whatever. -- vim.keymap.set( "n", "dd", function() require("dapui").open() -- Requires nvim-dap-ui vim.cmd[[DapContinue]] -- Important: This will lazy-load nvim-dap end ) end, dependencies = { "mfussenegger/nvim-dap", "mfussenegger/nvim-dap-python", -- Optional adapter for Python }, }, -- TODO: Make sure that debugpy is installed. Otherwise, disable -- Reference: https://github.com/mfussenegger/nvim-dap-python#installation -- { "mfussenegger/nvim-dap-python", config = function() require("dap-python").setup("/path/to/python/here") -- XXX: Replace this with your preferred Python, if wanted -- An example configuration to launch any Python file, via Houdini -- table.insert( -- require("dap").configurations.python, -- { -- type = "python", -- request = "launch", -- name = "Launch Via hython", -- program = "${file}", -- python = "/opt/hfs19.5.569/bin/hython" -- -- ... more options, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings -- } -- ) end, dependencies = { "mfussenegger/nvim-dap", "nvim-treesitter/nvim-treesitter", }, }, -- Remember nvim-dap breakpoints between sessions, ``:PBToggleBreakpoint`` { "Weissle/persistent-breakpoints.nvim", config = function() require("persistent-breakpoints").setup{ load_breakpoints_event = { "BufReadPost" } } vim.keymap.set("n", "db", ":PBToggleBreakpoint") end, }
  • Unable to view complex numpy arrays in Dataviewer in VSCode
    2 projects | /r/vscode | 10 Feb 2023
    After testing I have the same situation. I reported this issue on GitHub, you can follow up.
  • How to setup neotest with neotest-python and dap?
    3 projects | /r/neovim | 15 Dec 2022
    vim.fn.sign_define('DapBreakpoint', {text='🛑', texthl='', linehl='', numhl=''}) dap.configurations.python = { { -- The first three options are required by nvim-dap type = 'python'; -- the type here established the link to the adapter definition: `dap.adapters.python` request = 'launch'; name = "Launch file"; -- Options below are for debugpy, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings for supported options program = "${file}"; -- This configuration will launch the current file if used. pythonPath = function() -- debugpy supports launching an application with a different interpreter then the one used to launch debugpy itself. -- The code below looks for a `venv` or `.venv` folder in the current directly and uses the python within. -- You could adapt this - to for example use the `VIRTUAL_ENV` environment variable. return os.getenv("VIRTUAL_ENV") .. "/bin/python" or '/usr/bin/env python' end; }, }
  • How does mfussenegger / nvim-dap-python with nvim-dap runs the code in venv?
    1 project | /r/neovim | 30 Oct 2022
  • What Python debugger do you use?
    2 projects | /r/Python | 2 Sep 2022
  • Any functionality like VS Code debugger from command line (for Python)?
    2 projects | /r/learnpython | 31 Aug 2022
    You should take a look at DAP (Debug Adapter Protocol). There exist a Python module implementing this protocol (debugpy) and you can probably find some client applications that can hook into it (like this neovim plugin).

What are some alternatives?

When comparing vscode-jupyter and debugpy you can also consider the following projects:

evcxr

nvim-dap-python - An extension for nvim-dap, providing default configurations for python and methods to debug individual test methods or classes.

vscode-gitlens - Supercharge Git inside VS Code and unlock untapped knowledge within each repository — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via rich visualizations and powerful comparison commands, and so much more

nvim-dap - Debug Adapter Protocol client implementation for Neovim

vscode-nodebook - Node.js notebook

python-lsp-server - Fork of the python-language-server project, maintained by the Spyder IDE team and the community

Plotly.jl - A Julia interface to the plot.ly plotting library and cloud services

mason-nvim-dap.nvim

Bracket-Pair-Colorizer-2 - Bracket Colorizer Extension for VSCode

nvim-config

iron.nvim - Interactive Repl Over Neovim

pdbpp - pdb++, a drop-in replacement for pdb (the Python debugger)