We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm trying to run the Docker environment based on this: #6
I receive the error: No module named 'click._bashcomplete' In this line: RUN python3 -m spacy download en && python3 -m spacy download xx
No module named 'click._bashcomplete'
RUN python3 -m spacy download en && python3 -m spacy download xx
I've tried adding click to the requirements.txt file, and also pinning the spacy version to less than v3.
click
requirements.txt
spacy
Anybody else experiencing this or have any suggestions?
Thanks,
The text was updated successfully, but these errors were encountered:
For anyone interested, I changed line 18 to this and got the build to complete successfully:
python3 -m pip install --upgrade pip setuptools wheel && pip install -r requirements.txt
Which makes sure pip, setuptools and wheel are updated before installing requirements.
If this is a real issue and not isolated to me, I'll submit a PR. Let me know.
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm trying to run the Docker environment based on this: #6
I receive the error:
No module named 'click._bashcomplete'
In this line:
RUN python3 -m spacy download en && python3 -m spacy download xx
I've tried adding
click
to therequirements.txt
file, and also pinning thespacy
version to less than v3.Anybody else experiencing this or have any suggestions?
Thanks,
The text was updated successfully, but these errors were encountered: