mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 05:45:19 +00:00
fix
This commit is contained in:
parent
fa786c8e05
commit
8a411decac
1 changed files with 3 additions and 1 deletions
|
|
@ -97,7 +97,9 @@ except importlib.metadata.PackageNotFoundError:
|
||||||
|
|
||||||
|
|
||||||
PIP_INSTALL = (
|
PIP_INSTALL = (
|
||||||
os.environ.get("PIP_INSTALL") if os.environ.get("PIP_INSTALL") else PIP_INSTALL
|
os.environ.get("PIP_INSTALL", "False").lower() == "true"
|
||||||
|
if os.environ.get("PIP_INSTALL")
|
||||||
|
else PIP_INSTALL
|
||||||
)
|
)
|
||||||
|
|
||||||
if PIP_INSTALL:
|
if PIP_INSTALL:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue