karl-sc / cg-auto-bind-interface-zone

Autobinds cloudgenix interfaces to zones based on simple text matching
MIT License
0 stars 0 forks source link

Fuzzywuzzy module #1

Closed moorets1 closed 3 years ago

moorets1 commented 3 years ago

What does this module mean

PS C:\CloudGenix_Python\cg-auto-bind-interface-zone-main> py cg-auto-bind-interface-zone.py --zonename zscaler --interface-match sl-zscaler Traceback (most recent call last): File "C:\CloudGenix_Python\cg-auto-bind-interface-zone-main\cg-auto-bind-interface-zone.py", line 25, in from fuzzywuzzy import fuzz, process ModuleNotFoundError: No module named 'fuzzywuzzy'****

karl-sc commented 3 years ago

Hi, this means you are missing the required python module named 'fuzzywuzzy' found here: https://pypi.org/project/fuzzywuzzy/

you can install it with the pip command which could be one of the following depending on your environment: 1) pip install fuzzywuzzy 2) python3 -m pip install fuzzywuzzy 3) pip3 install fuzzywuzzy