16 lines
372 B
Bash
Executable File
16 lines
372 B
Bash
Executable File
#!/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/"
|