I'm trying to understand the difference between using pip install -Ur requirements.txt
vs pip install -r requirements.txt
I noticed that when using the one with -Ur
sometimes I get more recent updated packages when compared to using -r
. I tried to look it up across the internet but didn't find a reasonable explanation. Can anyone please explain the difference?
Thanks!