14 lines
181 B
Bash
14 lines
181 B
Bash
#!/bin/bash
|
|
|
|
pyenv install 3.9.11
|
|
pyenv local 3.9.11
|
|
|
|
python -m venv .
|
|
source ./bin/activate
|
|
|
|
python -m pip install rembg pillow
|
|
|
|
mkdir in .png .nobg out
|
|
mkdir out/scaled out/full
|
|
|