We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa0779 commit 652f856Copy full SHA for 652f856
1 file changed
src/spikeinterface/sorters/container_tools.py
@@ -238,7 +238,14 @@ def install_package_in_container(
238
pkg = package_name
239
if extra is not None:
240
pkg += extra
241
- cmd = f'pip install --user --upgrade --no-input "{pkg} @ {github_url}/archive/{tag_or_version}.tar.gz"'
+ cmd = [
242
+ "pip",
243
+ "install",
244
+ "--user",
245
+ "--upgrade",
246
+ "--no-input",
247
+ f"{pkg} @ {github_url}/archive/{tag_or_version}.tar.gz",
248
+ ]
249
res_output = container_client.run_command(cmd)
250
251
elif installation_mode == "folder":
0 commit comments