Skip to content

Commit

Permalink
PrusaLink updater fix attempt, pip has a new mandatory flg
Browse files Browse the repository at this point in the history
  • Loading branch information
TojikCZ authored and ondratu committed Mar 4, 2024
1 parent 96a047e commit 573e379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prusa/link/printer_adapter/command_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def check_update_prusalink():
def update_prusalink():
"""Run the bash script to update PrusaLink and return output"""
return check_output(
[executable, '-m', 'pip', 'install', '-U',
'--upgrade-strategy', 'only-if-needed', 'prusalink'],
[executable, '-m', 'pip', 'install', '-U', '--upgrade-strategy',
'only-if-needed', '--break-system-packages', 'prusalink'],
stderr=STDOUT).decode()


Expand Down

0 comments on commit 573e379

Please sign in to comment.