OSError at [E050] Can't find model 'en_core_sci_sm '. It doesn't seem to be a Python package or a valid path to a data directory.
See original GitHub issueThis is somewhat related to issue# 337.
When I run my code in the debugger, everything works perfectly. When I use Jenkins to deploy/dockerize my application on an Ubuntu server, everything works perfectly. When I use Jenkins to deploy/dockerize my application on my Windows 10 laptop, everything was working perfectly until it wasn’t. The line spacy.load throws the exception:
_scispacy_data_model = "en_core_sci_sm"
_nlp = spacy.load(_scispacy_data_model)
Thoughts or suggestions?
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
OSError: [E050] Can't find model 'en_core_web_sm ... - GitHub
It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory. I tried several ways...
Read more >OSError: [E050] Can't find model 'fr_core_web_md'. It doesn't ...
It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory." Despite the use of...
Read more >Spacy | [E050] Can't find model 'en_vectors_web_sm' - Kaggle
[E050] Can't find model 'en_vectors_web_sm'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data...
Read more >Spacy E050 Can't find model 'en core web sm' Solved
[ E050 ] Can't find model 'en_core_web_sm'. It doesn't seem to be a Python package or a valid path to a data directory....
Read more >[Solved] OSError: [E050] Can't find model 'en'. It doesn't seem ...
OSError : [E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@phil-oxenberg are you installing the model package in your Dockerfile? You need both:
in there somewhere. If not, can you post the dockerfile?
Glad we got it working 😃