mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-06-27 02:30:08 +00:00
10 lines
251 B
Bash
10 lines
251 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# aarch64 requires a custom build of paddlepaddle
|
||
|
if [ "${ARCH}" = "aarch64" ]; then
|
||
|
python3 -m pip install unstructured.paddlepaddle;
|
||
|
else
|
||
|
python3 -m pip install paddlepaddle;
|
||
|
fi
|
||
|
python3 -m pip install unstructured.paddleocr
|