fixed: auto dependencies installation

- missing `rich` module
This commit is contained in:
Dr.Lt.Data
2025-02-02 21:17:35 +09:00
parent ba9c71ffa4
commit df2a7ddca4
3 changed files with 4 additions and 3 deletions

View File

@@ -429,8 +429,9 @@ except Exception as e:
try:
import git # noqa: F401
import git # noqa: F401
import toml # noqa: F401
import rich # noqa: F401
except ModuleNotFoundError:
my_path = os.path.dirname(__file__)
requirements_path = os.path.join(my_path, "requirements.txt")