creating venv folder and make it more linux friendly

it will check if venv folder exsist if not it will skip it
This commit is contained in:
theboxyguy 2026-08-18 08:57:22 +03:00
parent 9077edab91
commit 4ef447f7f0

View file

@ -22,6 +22,18 @@ mkdir -p build/bandle/Data
#cp "$STEAMWORKS_PATH/redistributable_bin/linux64/libsteam_api.so" .
#make -j${make_threads} > steamshim.make.out
#cd ../..
#creating venv and installing python packages if not exsist
if [ ! -d "venv" ]; then
echo "Creating venv folder and install pip packages"
python3 -m venv venv
# the pakages themselves
pip install --upgrade pip
pip install pyqt5 pyinstaller
else
echo "The 'venv' folder already exists."
fi
pyinstaller journal/unix/journal.spec #--windowed
ruby rpgscript.rb scripts/ build/bandle/