I tried to force reinstall a package, but pip states that the requirement is already satisfied, as is --force-reinstall
isn't passed at all.
$ pip3 install --force-reinstall virtualenv
Requirement already satisfied: virtualenv in /usr/local/lib/python3.6/site-packages
The first google result for pip force-reinstall
is SO question Can I force pip to reinstall the current version? with solution.
So I should've used --ignore-installed
. I just assumed this was a bug based on the --force-reinstall
description.
Most helpful comment
So I should've used
--ignore-installed
. I just assumed this was a bug based on the--force-reinstall
description.