12 lines
142 B
Bash
12 lines
142 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 input
|