diff options
author | kopyl <oleggggg1997@gmail.com> | 2023-07-18 19:43:18 +0000 |
---|---|---|
committer | kopyl <oleggggg1997@gmail.com> | 2023-07-18 19:43:18 +0000 |
commit | 2b42f73e3d198f7d21de3bba9253fdcd4cc0d76d (patch) | |
tree | 9a8f9fd090187c52d518328e3e1b95e3a38a7b35 /webui.sh | |
parent | f865d3e11647dfd6c7b2cdf90dde24680e58acd8 (diff) | |
download | stable-diffusion-webui-gfx803-2b42f73e3d198f7d21de3bba9253fdcd4cc0d76d.tar.gz stable-diffusion-webui-gfx803-2b42f73e3d198f7d21de3bba9253fdcd4cc0d76d.tar.bz2 stable-diffusion-webui-gfx803-2b42f73e3d198f7d21de3bba9253fdcd4cc0d76d.zip |
Make possible to install web ui without venv with --novenv flag
When passing `--novenv` flag to webui.sh it can skip venv.
Might be useful for installing in Docker since messing with venv in Docker might be a bit complicated.
Example usage:
`webui.sh --novenv`
Hope this gets approved and pushed into future versions of Web UI
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -4,6 +4,11 @@ # change the variables in webui-user.sh instead # ################################################# +usevenv=1 +if [[ $@ == *"--novenv"* ]]; then + usevenv=0 +fi + # If run from macOS, load defaults from webui-macos-env.sh if [[ "$OSTYPE" == "darwin"* ]]; then if [[ -f webui-macos-env.sh ]] @@ -45,7 +50,7 @@ then fi # python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv) -if [[ -z "${venv_dir}" ]] +if [[ -z "${venv_dir}" ]] && [[ $usevenv -eq 1 ]] then venv_dir="venv" fi @@ -158,7 +163,7 @@ do fi done -if ! "${python_cmd}" -c "import venv" &>/dev/null +if [[ $usevenv -eq 1 ]] && ! "${python_cmd}" -c "import venv" &>/dev/null then printf "\n%s\n" "${delimiter}" printf "\e[1m\e[31mERROR: python3-venv is not installed, aborting...\e[0m" @@ -178,7 +183,7 @@ else cd "${clone_dir}"/ || { printf "\e[1m\e[31mERROR: Can't cd to %s/%s/, aborting...\e[0m" "${install_dir}" "${clone_dir}"; exit 1; } fi -if [[ -z "${VIRTUAL_ENV}" ]]; +if [[ $usevenv -eq 1 ]] && [[ -z "${VIRTUAL_ENV}" ]]; then printf "\n%s\n" "${delimiter}" printf "Create and activate python venv" @@ -201,7 +206,7 @@ then fi else printf "\n%s\n" "${delimiter}" - printf "python venv already activate: ${VIRTUAL_ENV}" + printf "python venv already activate or run without venv: ${VIRTUAL_ENV}" printf "\n%s\n" "${delimiter}" fi |