From 49154f0aa23f3cc8d48b683c62e9195ea8e6aca6 Mon Sep 17 00:00:00 2001 From: Hollow Man Date: Sun, 22 Feb 2026 23:57:47 +0800 Subject: [PATCH] fix: No module named 'scripts.generate_pyi' When run `install.sh` directly, it will fail with the following error: ```bash Traceback (most recent call last): File "DeepGEMM/setup.py", line 19, in from scripts.generate_pyi import generate_pyi_file ModuleNotFoundError: No module named 'scripts.generate_pyi' ``` This is because the `scripts/` directory has no `__init__.py`, so Python can't import it as a package. The fix is to create one. Signed-off-by: Hollow Man --- scripts/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 scripts/__init__.py diff --git a/scripts/__init__.py b/scripts/__init__.py new file mode 100644 index 0000000000..e69de29bb2