Easygui/tkinter and Python3

Needed to install easygui in Python 3. So…pip3 install easygui. Then it reported that tkinter was missing. First off I thought tkinter was included with python…I guess not…maybe python 2? So quick googling suggested pip install tk. which ran but still “reported that tkinter was missing”. More googling suggested pip install python-tk. WTH? I guess so you won’t accidently install Cobol-tk in python. Evidently the fact that I’m using pip doesn’t imply python? Anywho still reported that tkinter or something was wrong/missing. Finally pip install python3-tk worked!

Being that Python 2 is no longer supported it’d be nice if the defaults were for Python 3!