3

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?

Begbie00
  • 363

1 Answers1

6

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
liecno
  • 176