I am new to python and I don't have much experience in constructing a good working directory. But in my past experience working with installed packages through pip, I don't have any issues.
I am trying to download, install and import spacy. According to my pip list, I see the spacy package is successfully downloaded. But when I try to create a python document on MS visual studio code, running the code import spacy
in my terminal, it says
Import "spacy" could not be resolved Pylance (reportMissingImports).
When I run it on command, it says:
2021-07-10 15:41:04.164329: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
2021-07-10 15:41:04.164530: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
INFO:tensorflow:Enabling eager execution
INFO:tensorflow:Enabling v2 tensorshape
INFO:tensorflow:Enabling resource variables
INFO:tensorflow:Enabling tensor equality
INFO:tensorflow:Enabling control flow v2
I wonder if anyone is having a clue on what is going on.