From 91ce4c32ff0c74599a561865cc2c5801f7c9d34f Mon Sep 17 00:00:00 2001 From: Wei Hong Date: Sat, 6 Jun 2026 17:21:35 +0800 Subject: [PATCH] Update requirements.txt and add init script. --- init.sh | 9 +++++++++ requirements.txt | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 init.sh diff --git a/init.sh b/init.sh new file mode 100644 index 0000000..4481e79 --- /dev/null +++ b/init.sh @@ -0,0 +1,9 @@ +echo "Checking environment..." +if command -v uv &> /dev/null; then + echo "uv installed" +else + echo "uv not installed. Install it via \"dnf install uv\" or \"apt install uv\" !" >&2 +fi + +uv venv +uv pip install -r requirements.txt \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 7235b4c..5423e0d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ prompt-toolkit==3.0.52 cryptography==48.0.0 -jproperties==2.1.2 \ No newline at end of file +jproperties==2.1.2 +nuitka==4.1.2 \ No newline at end of file