Skip to content

Commit 32544d0

Browse files
committed
Fix automated install of [os] packages
1 parent 596612e commit 32544d0

File tree

2 files changed

+2
-2
lines changed
  • interpreter/terminal_interface/profiles/defaults

2 files changed

+2
-2
lines changed

interpreter/terminal_interface/profiles/defaults/01.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

interpreter/terminal_interface/profiles/defaults/os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
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

0 commit comments

Comments
 (0)