We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bea3d47 commit 814e3efCopy full SHA for 814e3ef
pipelineviewer/main.py
@@ -6,7 +6,12 @@
6
from attrdict import AttrDict
7
import colorama
8
import argparse
9
-from babeltrace import TraceCollection
+
10
+try:
11
+ from babeltrace import TraceCollection
12
+except ImportError:
13
+ print("babeltrace needed and needs to be installed manually (e.g., python3-babeltrace in Debian/Ubuntu)")
14
+ exit(1)
15
16
from riscvmodel.code import decode
17
from riscvmodel.model import Model
0 commit comments