spacy-clausie problem #11991
Unanswered
Abelcanc3rhack3r
asked this question in
Help: Installation
Replies: 1 comment
-
Note that clausie is a third-party package and so it's usually better to ask for help at their repo.
This error usually means you have a file with the same name as your library, and so Python tries to load code from your file (making a circular import) rather than the library. Is your code in a file named |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have a problem running spacy-clausie:
https://spacy.io/universe/project/spacy-clausie
I installed spacy-clausie by running:
python -m pip install git+https://github.com/mmxgn/spacy-clausie.git
Then I ran the code in the example:
I got the error:
Traceback (most recent call last):
File "/home/yichen/PycharmProjects/openai_codex/NLP_labelling/dependency_rel/claucy.py", line 2, in
import claucy
File "/home/yichen/PycharmProjects/openai_codex/NLP_labelling/dependency_rel/claucy.py", line 5, in
claucy.add_to_pipe(nlp)
AttributeError: partially initialized module 'claucy' has no attribute 'add_to_pipe' (most likely due to a circular import)
How do I solve this problem?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions