I am able to import fuzzywuzzy on command promt but not able to import on jupyter notebook
I have even tried assigning sys.executable to my sys.path variable https://stackoverflow.com/a/62419449/8031463
import sys
print(sys.executable)
# sys.path.append(sys.executable)
sys.path = [sys.executable]
now here is the variable values
sys.executable
'c:\python3.6\python.exe'
sys.path
['c:\python3.6\python.exe']
Still i am getting no module error
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-12-e08dc57fd8ae> in <module>
1 # unique_name_dict
----> 2 from fuzzywuzzy import process
3
4 # word = "anuraag"
5
ModuleNotFoundError: No module named 'fuzzywuzzy'