Merge branch 'develop' of https://github.com/coreemu/core into develop

This commit is contained in:
Blake Harnden 2022-09-29 14:03:53 -07:00
commit 4b2d33c898

View file

@ -1,8 +1,10 @@
#!/bin/bash
# install pre-reqs using yum/apt
PYTHON="${PYTHON:=python3}"
PYTHON_DEP="${PYTHON_DEP:=python3}"
# install pre-reqs using yum/apt
if [ -z "${NO_SYSTEM}" ]; then
if command -v apt &> /dev/null
then
echo "setup to install CORE using apt"
@ -16,6 +18,7 @@ else
echo "install python3, pip, venv, pipx, and invoke to run the automated install"
exit 1
fi
fi
# install tooling for invoke based installation
${PYTHON} -m pip install --user pipx==0.16.4