-2

I'm reading a code that uses pip install -qq <package> to install python packages.

I know what is pip and what pip install does. But I don't know what is that -qq and when should I use it. I googled it and searched it on SO but didn't find anything. Will be glad if you can help me understand this.

Peyman
  • 3,097
  • 5
  • 33
  • 56

1 Answers1

0

Pip install -q is an option to --

Give less output. Option is additive, and can be used up to 3 times (corresponding to WARNING, ERROR, and CRITICAL logging levels).

Strange
  • 314
  • 1
  • 4
  • 15