What is the difference between >=
and ~=
when use in python requirements.txt for some library? For example requests >= 2.18.0
and requests ~= 2.18.0
I have tried both the things and its working fine
requests >= 2.18.0
requests ~= 2.18.0
Could anyone please explain me the exact difference between the >=
and ~=
operator?