I have a python script attempting utilize openpyxl and recently have been getting the following exception:
No module named utils
Where it is getting thrown is in my imports section:
import csv
from openpyxl import Workbook
from openpyxl.utils import get_column_letter <<< Throws exception
from openpyxl.styles import NamedStyle, Font, Border, Side
I am utilizing Openpyxl 3.0.1 with Python 3.6 (also tried with an Anaconda environment with same result as well as 3.7). Not sure if I'm missing a dependency?