0

Getting the following error when trying to import a lib that depends on zope

No module named zope.index

my python path is correct (I can import other libs) I already created an init.py file in the zope folder but it still isnt working so Im not sure what I might be missing

currently using python 3.7

*edit Error:

File "C:\Users\vitor.valentim\AppData\Local\Programs\Python\Python37\Lib\dedupe\tfidf.py", line 5, in from .canopy_index import CanopyIndex

File "C:\Users\vitor.valentim\AppData\Local\Programs\Python\Python37\Lib\dedupe\canopy_index.py", line 3, in from zope.index.text.lexicon import Lexicon

ModuleNotFoundError: No module named 'zope.index'

zope path

zope.index path

asked Nov 15, 2018 at 19:49
1
  • Please do not include images of code or errors. Paste their output (formatted) here. Commented Nov 15, 2018 at 20:39

1 Answer 1

0

The error message No module named zope.index implies that import found a package zope, but then failed to find zope.index (otherwise the error message would be No module named zope).

Try

import zope
print(zope)

and see what that resolves to, something like this often happens if there is something shadowing the package you're trying to import.

answered Nov 15, 2018 at 21:41
Sign up to request clarification or add additional context in comments.

1 Comment

Print returned: <module 'zope' from 'C:\\Users\\vitor.valentim\\AppData\\Local\\Continuum\\anaconda3\\lib\\site-packages\\zope\_init_.py'> seems like python is looking on the wrong folder (looking at the anaconda folder when it should be looking at the python37 one). How can I fix this? Im using spyder

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.