Error: option –single-version-externally-managed not recognized when python pip installs third-party libraries

Command: PIP install mysql-Connector-Python-RF ==2.1.3 Prompt error message when installing packages: Error :option — single-version — managednotrecognized
The reason may be that your installation package is a wheel-based installation package.
will report this error if you do not have wheels installed on your computer.
install wheel:
PIP install wheel
and then install with PIP I want package :
PIP install mysql-connector-python-rf==2.1.3

Read More: