Yes, you can force pip to reinstall the current version below is the command for the same:-
pip install --upgrade --force-reinstall <package>
When you are upgrading the pip, you should reinstall all packages even if they are already up-to-date, In that case, you should ignore the installed packages (reinstalling instead). You can use the following command to ignore the installed packages.
pip install -I <package>
pip install --ignore-installed <package>
To know more about this you can have a look at the following video:-
Learn python with the help of this python training and also visit the python interview questions.