From 4f52ee4f81092e94b6cc93cd98d5ebadc037057e Mon Sep 17 00:00:00 2001 From: Oren Amsalem Date: Thu, 20 Jul 2023 02:43:22 -0400 Subject: [PATCH] fix spelling correction when suggestin gui installation --- cellpose/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cellpose/__main__.py b/cellpose/__main__.py index 433e34d7..751756fd 100644 --- a/cellpose/__main__.py +++ b/cellpose/__main__.py @@ -48,7 +48,7 @@ def main(): print('GUI ERROR: %s'%GUI_ERROR) if GUI_IMPORT: print('GUI FAILED: GUI dependencies may not be installed, to install, run') - print(' pip install cellpose[gui]') + print(' pip install "cellpose[gui]"') else: gui.run()