22 lines
465 B
Bash
22 lines
465 B
Bash
#!/usr/bin/env bash
|
|
cd "$(dirname $0)/.."
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
set -e
|
|
|
|
source .dfl/deep/bin/activate
|
|
|
|
set -e
|
|
|
|
python3.11 -m pip install --upgrade pip numpy opencv-python colorama tqdm future tensorflow-macos scipy
|
|
|
|
source .dfl/env/bin/activate
|
|
|
|
set -e
|
|
|
|
python3.10 -m pip install --upgrade pip numpy opencv-python colorama tqdm future tensorflow-macos scipy
|
|
|
|
cp -R .dfl/ffmpeg/ffmpeg .dfl/deep/lib/python$(version)/site-packages/
|
|
|
|
echo "Done."
|