Skip to content

Commit 0a18463

Browse files
committed
fix: improve handling of path spaces in ui pip install of interpreter
Signed-off-by: Nick Mitchell <[email protected]>
1 parent a73d211 commit 0a18463

File tree

1 file changed

+1
-1
lines changed
  • pdl-live-react/src-tauri/src/cli

1 file changed

+1
-1
lines changed

pdl-live-react/src-tauri/src/cli/run.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn pip_install_if_needed(app_handle: tauri::AppHandle) -> Result<String, tauri::
4848
"sh",
4949
"-c",
5050
format!(
51-
"source {activate} && pip install -r {requirements}",
51+
"source '{activate}' && pip install -r '{requirements}'",
5252
activate = activate_path,
5353
requirements = requirements_path
5454
)

0 commit comments

Comments
 (0)