create installer

This commit is contained in:
2025-09-10 15:43:14 +03:00
parent 26a9db889f
commit b6e6190d6c
41 changed files with 308 additions and 0 deletions

15
download_32bit_libs.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Download 32-bit ARM compatible libraries
set -e
echo "Downloading 32-bit ARM compatible packages..."
# Create directory for 32-bit wheels
mkdir -p req_libraries_32bit
# Download with broader compatibility
pip download -r requirements.txt -d req_libraries_32bit/ --prefer-binary
echo "Download completed!"
echo "Files downloaded to req_libraries_32bit/"