create installer
This commit is contained in:
15
download_32bit_libs.sh
Executable file
15
download_32bit_libs.sh
Executable 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/"
|
||||
Reference in New Issue
Block a user