ModuleNotFoundError: No module named 'click'

11,195

enter in terminal:

sudo pip3 install Click
Share:
11,195
Admin
Author by

Admin

Updated on December 02, 2022

Comments

  • Admin
    Admin over 1 year

    I am trying to run this script here: https://github.com/carderne/signal-export

    However, when I run

    ./sigexport.py outputdir
    

    I get this:

    Traceback (most recent call last):
      File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/./sigexport.py", line 11, in <module>
        import click
    ModuleNotFoundError: No module named 'click'
    

    Any idea what I am doing wrong?