modulenotfounderror: no module named 'langchain_community'

ModuleNotFoundError “langchain_community” occurs when the package isn’t installed or version mismatch. Install using pip install langchain-community, update LangChain, ensure correct environment, then restart your runtime or kernel
 
yeah, they totally did. it's a whole thing now. `langchain_community` got split out into its own package. so you probably need to `pip install langchain-community` separately. i ran into this last month with an old script too, totally messed up my dev env for a bit.
 
ModuleNotFoundError “langchain_community” occurs when the package isn’t installed or version mismatch. Install using pip install langchain-community, update LangChain, ensure correct environment, then restart your runtime or kernel

yep that fixed it much appreciated
 
Back
Top