LabDeck's integrated Python work environment โ full CPython support, visual GUI designers, and tight coupling with MatDeck documents and scripting.
MD Python is not a separate open-source pip package โ it is the
Python mode inside LabDeck (MatDeck). It gives you a classical Python IDE
that runs standard .py files and uses normal libraries (tkinter, NumPy, Kivy,
PySide2, Flet, etc.), but embeds that workflow inside LabDeck's document system alongside
GUI designers, plotting, and MatDeck Script.
Think of it as Python + visual tools in one product, aimed at users who build GUIs, scripts, and technical documents without switching between many separate applications.
MD Python is the language/IDE layer. MD Python Designer is the subscription product that unlocks full drag-and-drop GUI builders and specialized IDEs. Lite MD Python Designer includes limited access; the full suite adds unlimited widgets and all designer modes.
.py files; import any library you install or bundle with LabDeck..md document.| Output | Typical use | Guide |
|---|---|---|
| Tkinter | Simple desktop tools | Tkinter |
| Custom Tkinter | Modern desktop UI | CustomTkinter |
| Kivy | Mobile & touch | Kivy |
| PySide2 | Professional Qt apps | PyQt / PySide |
| Flet | Flutter / web / mobile | Flet |
| MatDeck Script | LabDeck-native scripting | โ |
.py apps.# After export from MD Python Designer, you run like any project:
python my_app.py
# Or package for end users:
pyinstaller --onefile --windowed my_app.py
MD Python is obtained through LabDeck, not via pip install md-python.
# 1. Download LabDeck / MD Python Designer from LabDeck
# 2. Lite edition โ free, limited widgets (e.g. 5 on canvas)
# 3. Full MD Python Designer โ paid year subscription, all designers
# See: https://labdeck.com/products/md-python-designer/
You want LabDeck's visual GUI designers and a unified document/IDE experience, and you are
fine with a commercial toolchain. For free-only stacks, use pip libraries and
Qt Designer or PAGE instead.
Useful guides and tools (from webpage_links.xlsx).