mirror of https://github.com/explosion/spaCy.git
fix funny printing
This commit is contained in:
parent
8e20505970
commit
b228111925
|
@ -609,7 +609,7 @@ def run_commands(
|
||||||
elif len(command) and command[0] in ("pip", "pip3"):
|
elif len(command) and command[0] in ("pip", "pip3"):
|
||||||
command = [sys.executable, "-m", "pip", *command[1:]]
|
command = [sys.executable, "-m", "pip", *command[1:]]
|
||||||
if not silent:
|
if not silent:
|
||||||
print(" ".join(command))
|
print(f"Running command: {command}")
|
||||||
run_command(command)
|
run_command(command)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue