From ed7e19c8c90803b74ef3f3a027cd624bfad1d39b Mon Sep 17 00:00:00 2001 From: Donatas Tamosauskas Date: Sun, 28 Sep 2025 17:53:42 +0200 Subject: [PATCH] Update editor-setup.md Install for `aqt[qt6]` fails, it appears that the qt6 extra has been removed ([https://pypi.org/project/aqt/](https://pypi.org/project/aqt/) ). Currently available extras are: audio , qt , qt66 , qt67 , qt68. But it seems to me that the default aqt setup installs qt6 dependencies without any extras. --- src/editor-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor-setup.md b/src/editor-setup.md index 7d7530d..e1cb5c4 100644 --- a/src/editor-setup.md +++ b/src/editor-setup.md @@ -32,7 +32,7 @@ PyCharm, click on Python Console in the bottom left and type the following in: import subprocess subprocess.check_call(["pip3", "install", "--upgrade", "pip"]) -subprocess.check_call(["pip3", "install", "mypy", "aqt[qt6]"]) +subprocess.check_call(["pip3", "install", "mypy", "aqt"]) ``` Hit enter and wait. Once it completes, you should now have code completion.