File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
terminal_interface/profiles/defaults Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212import requests
1313from ...utils .lazy_import import lazy_import
1414from ..utils .recipient_utils import format_to_recipient
15- import cv2
1615from screeninfo import get_monitors # for getting info about connected monitors
1716
1817
1918# Still experimenting with this
2019# from utils.get_active_window import get_active_window
2120
2221# Lazy import of optional packages
22+ cv2 = lazy_import ("cv2" )
2323pyautogui = lazy_import ("pyautogui" )
2424np = lazy_import ("numpy" )
2525plt = lazy_import ("matplotlib.pyplot" )
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ def get_function_info(file_path):
216216 print ("Attempting to start OS control anyway...\n \n " )
217217
218218 for pip_name in ["pip" , "pip3" ]:
219- command = f"{ pip_name } install ' open-interpreter[os]' "
219+ command = f"{ pip_name } install open-interpreter[os]"
220220
221221 interpreter .computer .run ("shell" , command , display = True )
222222
Original file line number Diff line number Diff line change 170170 print ("Attempting to start OS control anyway...\n \n " )
171171
172172 for pip_name in ["pip" , "pip3" ]:
173- command = f"{ pip_name } install ' open-interpreter[os]' "
173+ command = f"{ pip_name } install open-interpreter[os]"
174174
175175 interpreter .computer .run ("shell" , command , display = True )
176176
You can’t perform that action at this time.
0 commit comments