Getting ModuleNotFoundError when trying to load spaCy's small language model

Hi there,
Here’s my issue:
When I try to load spaCy’s small language model I get the following error:
ModuleNotFoundError: No module named ‘_swigfaiss’

I thought that using the small model would be possible to use after reading this post in the forum: Using SpaCy from within Anvil (instead of via Uplink)

Code Sample:

nlp = spacy.load("en_core_web_sm")

Can you give more code context to the problem? A longer code snippet and/or Clone link would really help. From what you have right now, I don’t see where you are calling _swigfaiss.

Thanks for being open to help, @duncan_richards12. Here’s a clone link: Anvil | Login

It looks like _swigfaiss is a missing dependency required for loading the language model.