Skip to content

InstallWidget

InstallWidget widget

This image generated from example code below.

InstallWidget #

Bases: QWidget

Widget to manage installation of MicroManager.

This widget will let you download and install a specific version of MicroManager from https://micro-manager.org/downloads. It will also manage the currently installed versions.

Example#

install_widget.py
1
2
3
4
5
6
7
8
9
from qtpy.QtWidgets import QApplication

from pymmcore_widgets import InstallWidget

app = QApplication([])
wdg = InstallWidget()
wdg.show()
wdg.resize(700, 250)
app.exec_()