Skip to content

Commit

Permalink
fix: add -u to get the latest chat cli
Browse files Browse the repository at this point in the history
  • Loading branch information
imotai committed Oct 7, 2023
1 parent 95cb23a commit 087e0f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion up/src/og_up/up.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def run_install_cli(live, segments):
result_code = 0
refresh(live, segments)
outputs = ""
for code, output in run_with_realtime_print(command=["pip", "install", "og_chat"]):
for code, output in run_with_realtime_print(command=["pip", "install", "-U", "og_proto",
"og_sdk", "og_chat"]):
outputs += output
result_code = code
if result_code == 0:
Expand Down

0 comments on commit 087e0f0

Please sign in to comment.