I can't seem to find Python's 2to3 conversion tool anywhere on Fedora 20. I can't find an RPM (except an old OpenSUSE one) either.
Any ideas?
The binary is included within the python-tools package. You can find these packages using yum's whatprovides functionality:
yum whatprovides /usr/bin/2to3
You can then install it using:
yum install python-tools
dnf whatprovides /usr/bin/2to3anddnf install python3-devel. – vishnu narayanan Oct 23 '19 at 02:38