DIGMASTER97
DIGMASTER97

Reputation: 329

what is the meaning of pip install -v?

Recently, I seen a command of pip install -v

actually it is

$ git clone https://github.com/NVIDIA/apex
$ cd apex
$ pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./

I usually command pip install something

But what is pip install -v?

Upvotes: 3

Views: 3727

Answers (1)

Moin Syed
Moin Syed

Reputation: 130

-v or we can can also use --verbose. Both are same.

-v is used when you want to use or expressed something in more words than are needed.

-v Give more output. Option is additive, and can be used up to 3 times.

Upvotes: 3

Related Questions