Use --quiet flag when installing pip dependencies

This commit is contained in:
Jakub Beránek 2024-06-08 23:25:43 +02:00
parent cfdb6175c2
commit 1ade7cbe41
No known key found for this signature in database
GPG Key ID: 909CD0D26483516B

View File

@ -320,7 +320,7 @@ fn install_requirements(
}
let stat = Command::new(py_path)
.args(["-m", "pip", "install", "--require-hashes", "-r"])
.args(["-m", "pip", "install", "--quiet", "--require-hashes", "-r"])
.arg(src_reqs_path)
.status()?;
if !stat.success() {