vscodium icon indicating copy to clipboard operation
vscodium copied to clipboard

Question: what do you use as a tabular data viewer in debug mode?

Open manos-msdn opened this issue 9 months ago • 4 comments

For example if there is a dataframe in a debugger variable and I want to visualise it as a table, what can I use? When I choose "View value in data viewer", it comes up with a popup window:

Image

but when I click yes and we search the extensions with "@tag:jupyterVariableViewers" nothing comes up

Also not sure why it searches for jupyterVariableViewers as I am not running inside a jupyter file, but even if I remove that word and search just for VariableViewers, again nothing

Thanks

manos-msdn avatar Mar 10 '25 10:03 manos-msdn

1. Manually install Jupyter & Python extensions

Even if you're not in a Jupyter file, the viewer relies on those extensions.

codium --install-extension ms-python.python
codium --install-extension ms-toolsai.jupyter

If you get installation errors, make sure your VSCodium is properly configured to use Open VSX.

  1. Install the Jupyter Extension from Open VSX Steps:

Open VSCodium.

Go to Extensions (Ctrl+Shift+X).

Paste this URL into the search bar: https://open-vsx.org/vscode/item?itemName=ms-toolsai.jupyter

Install the Jupyter extension and reload VSCodium. Alternative (Manual Installation): Download the .vsix file from Open VSX. In VSCodium, go to Extensions > ⋮ (More Actions) > Install from VSIX. Select the downloaded file and install. Post-Installation: Ensure Python and required packages (like pandas) are installed in your environment. Restart the debugger. The "View value in data viewer" feature should now work.

  1. Use an external viewer as a workaround If the viewer doesn’t load, use the terminal to inspect or export the data:
print(df.head())
df.to_csv("debug_output.csv")  # then open in Excel or similar
  1. Enable Microsoft Marketplace (Advanced) If you're okay with using the Microsoft marketplace, you can modify your settings.json:
"extensionsGallery": {
  "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
  "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index",
  "itemUrl": "https://marketplace.visualstudio.com/items"
}

AbdelatefElshafei avatar Apr 11 '25 18:04 AbdelatefElshafei

This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment, and we'll keep it open. If you have any new additional information, please include it with your comment!

github-actions[bot] avatar Oct 09 '25 01:10 github-actions[bot]

I did a little digging and the issue is that the Jupyter extension deprecated the existing data viewer in favour of a closed source "Data Wrangler" extension that's only available on the Microsoft marketplace. microsoft/vscode-jupyter#15486

bytang avatar Oct 15 '25 05:10 bytang

Still the same issue here, python and jupyter (and pandas in my venv) installed, but also gets:

when I click yes and we search the extensions with "@tag:jupyterVariableViewers" nothing comes up

I also tried adding microsoft marketplace in my settings.json as hinted by https://github.com/VSCodium/vscodium/issues/2251#issuecomment-2797736268 but still not found (not sure the modif of the settings.json fixed anything).

Any way to fix this?

maxanthem avatar Oct 27 '25 15:10 maxanthem