I am importing libraries which I installed using pip install .. to Jupyter Notebook using the anaconda distribution, which is working. Next I am tryin to import the same libraries in VS Code and running it using Anaconda prompt. I am getting error messages like: ModuleNotFoundError: No module named 'spacy'
I don't understand why it would work in Jupyter notebook but not using VS Code, aren't they both using the Anaconda distribution?
EDIT: I tried using Sublime text editor and got the same error. When using the Anaconda Prompt and running 'pip list' I get a list of all packages including spacy, but when running the code I get an error "No module named 'spacy'"