Skip to content

Instantly share code, notes, and snippets.

View NicolaiLolansen's full-sized avatar
💻
Doing work!

Nicolai Lolansen NicolaiLolansen

💻
Doing work!
View GitHub Profile
@NicolaiLolansen
NicolaiLolansen / notes.md
Created February 14, 2024 12:03 — forked from AsgerPetersen/notes.md
Debugging QGIS 3.x python plugins on OSX using VS Code

Debugging QGIS 3.x python plugins on OSX using VS Code

Plugin

In QGIS install the plugin debugvs.

Python dependencies

The debugvs plugin needs the python module ptvsd to function. This module is not installed by default.

In principle you just pip install ptvsd in the python interpreter used by QGIS.

@NicolaiLolansen
NicolaiLolansen / notes.MD
Last active March 14, 2024 20:41
Debugging QGIS 3.x python plugins on Windows using VS Code