mirror of
http://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-06 00:43:15 +00:00
13 lines
222 B
Plaintext
13 lines
222 B
Plaintext
|
#!/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
|
||
|
|