csv2vcf icon indicating copy to clipboard operation
csv2vcf copied to clipboard

ModuleNotFoundError: No module named 'distutils.core' AND 'tkinter' (SOLVED)

Open arielenter opened this issue 5 years ago • 1 comments

Using python instead of python3 was not working with me. So I stick with python3 and had to install the following packages:

python3-distutils python3-tk

Then I just had to use python3 -m csv2vcf to make it work.

Installing only python-tk did not work for me. Thank you.

arielenter avatar Oct 15 '20 16:10 arielenter

OK, I don't know anything about programing in python and it might not be it, but apparently, at least in my system, tkinter has to be imported with a capital "T", there for, "import Tkinter" must be used instead of "import tkinter", when python is used instead of python3.

arielenter avatar Oct 15 '20 19:10 arielenter