In some of the container enum and backports.strenum may not be pre-installed. It is imported in "TraceLens/TreePerf/jax_analyses.py". Shall we add the package enum or backports.strenum into the installation script?
try:
from enum import StrEnum
except ImportError:
from backports.strenum import StrEnum
@jasainio @gabeweisz