[docs]defstart_dpgui(args:argparse.Namespace):"""Host DP-GUI server. Parameters ---------- args : argparse.Namespace Arguments from argparse. Raises ------ ModuleNotFoundError The dpgui package is not installed """try:fromdpguiimport(start_dpgui,)exceptModuleNotFoundErrorase:raiseModuleNotFoundError("To use DP-GUI, please install the dpgui package:\npip install dpgui")fromestart_dpgui(port=args.port,bind_all=args.bind_all)