I made lomap compatible with python 3. It wasn't too bad, there was just one tricky step.
use '2to3' (comes with python) to convert lomap scripts to python3.
/path-to-lomap/lomap$ 2to3 -w -n .
Note: -w means that 2to3 writes the changes to the files (instead of just printing to terminal) and -n means do not create backup files.
I made lomap compatible with python 3. It wasn't too bad, there was just one tricky step.
/path-to-lomap/lomap$ 2to3 -w -n .
Note: -w means that 2to3 writes the changes to the files (instead of just printing to terminal) and -n means do not create backup files.sudo pip install .
in the folder (maybe pip3?) and then adding the path to pp to your PYTHONPATH variable. (see https://github.com/Kamnitsask/deepmedic/issues/58 for more info)