-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz_getwhls.bat
20 lines (13 loc) · 997 Bytes
/
z_getwhls.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set output_dir=C:/Users/knott/Documents/FRC_CODE/VisionO24/z_whls
if not exist "%output_dir%" mkdir "%output_dir%" --platform manylinux2014_aarch64 --python-version 310 --only-binary=:all:
echo Downloading Dash...
pip download dash --destination-dir "%output_dir%" --platform manylinux2014_aarch64 --python-version 310 --only-binary=:all:
echo Downloading Flask...
pip download flask --destination-dir "%output_dir%" --platform manylinux2014_aarch64 --python-version 310 --only-binary=:all:
echo Downloading NumPy...
pip download numpy --destination-dir "%output_dir%" --platform manylinux2014_aarch64 --python-version 310 --only-binary=:all:
echo Downloading OpenCV...
pip download opencv-python --destination-dir "%output_dir%" --platform manylinux2014_aarch64 --python-version 310 --only-binary=:all:
echo Downloading Numba...
pip download numba --destination-dir "%output_dir%" --platform manylinux2014_aarch64 --python-version 310 --only-binary=:all:
echo All downloads are complete!