mirror of
https://github.com/theroyallab/tabbyAPI.git
synced 2026-03-14 15:57:27 +00:00
Start: Print pip install command
Helps for debugging. Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
4
start.py
4
start.py
@@ -128,7 +128,9 @@ if __name__ == "__main__":
|
||||
features = f"[{install_features}]" if install_features else ""
|
||||
|
||||
# pip install .[features]
|
||||
subprocess.run(["pip", "install", "-U", f".{features}"])
|
||||
install_command = f"pip install -U .{features}"
|
||||
print(f"Running install command: {install_command}")
|
||||
subprocess.run(install_command.split(" "))
|
||||
|
||||
# Import entrypoint after installing all requirements
|
||||
from main import entrypoint
|
||||
|
||||
Reference in New Issue
Block a user