Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

no module named fuzzywuzzy

I installed fuzzywuzzy with pip for python3. When I do pip list I see

fuzzywuzzy (0.8.1)

However when I try to import is I get an error.

Python 3.4.0 (default, Jun 19 2015, 14:20:21)
[GCC 4.8.2] on linux 
Type "help", "copyright", "credits" or "license" for more information.
>>> import fuzzywuzzy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'fuzzywuzzy'
>>>

Does anyone have experience with this problem?

like image 210
user3605780 Avatar asked Feb 09 '16 16:02

user3605780


2 Answers

Are you sure you ran pip3 and not just pip? The latter only installs Python 2 packages.

like image 183
Harald Nordgren Avatar answered Sep 21 '22 12:09

Harald Nordgren


Go to anaconda prompt and try

pip3 install fuzzywuzzy

You can follow this documentation: https://pypi.org/project/fuzzywuzzy/

like image 37
Harshal SG Avatar answered Sep 20 '22 12:09

Harshal SG