I'm writing an equity calculator for poker hands
using this library Deuces
for hand evaluation
https://github.com/worldveil/deuces
The library is written for Python 2.7 and it can be installed with the command
pip install deuces
The library works well in Python 2.7 but I need to switch to Python 3.4.
I wanted to use 2to3
to convert library files and then
install the library but the command pip doesn't allow this operation
How can I convert the library from Python 2.7 to Python 3.4?