It give an errror on this when run with pip version 20 ``` if pipversion >= LooseVersion("19.3"): from pip._internal import pep425tags ``` I had updated with ``` if pipversion >= LooseVersion("19.3"): from wheel import pep425tags ``` and it worked
It give an errror on this when run with pip version 20
I had updated with
and it worked