mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-18 13:13:01 +00:00
13 lines
222 B
Bash
Executable File
13 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -d env_fw ]; then
|
|
python3 -m venv env_fw
|
|
. env_fw/bin/activate
|
|
pip3 install -r requirements.txt || pip install -r requirements.txt || exit 1
|
|
./funkwlmpv
|
|
else
|
|
. env_fw/bin/activate
|
|
./funkwlmpv
|
|
fi
|
|
|