Skip to content Skip to sidebar Skip to footer

Python3: Could Not Find "vcomp140.dll (or One Of Its Dependencies)" While Trying To Import Nltk

When I try to import nltk on Python 3.9.1 on Windows 10 Pro, I get the following error: Traceback (most recent call last): File '', line 1, in

Solution 1:

As @Rabindra suggests, the issue lies in missing Visual Studio C++ Redistributable binaries.

You can install them from the official link. They are dependency of many of the C++ libraries compiled on Windows that expose Python API (or python modules that are in fact interfacing into C++ libraries).

Post a Comment for "Python3: Could Not Find "vcomp140.dll (or One Of Its Dependencies)" While Trying To Import Nltk"