ModuleNotFoundError: No module named 'click' [duplicate]

I am trying to run this script here:

However, when I run

./sigexport.py outputdir

I get this:

Traceback (most recent call last): File "/Library/Frameworks/", line 11, in <module> import click
ModuleNotFoundError: No module named 'click'

Any idea what I am doing wrong?

6

1 Answer

enter in terminal:

sudo pip3 install Click

You Might Also Like