ztane/python-Levenshtein

Error in installation with pip [Windows]

RaXorX opened this issue · 3 comments

I am on windows 10 x64. Recently was trying my hand on a tool called videocr. It requires the installation of levenshtein, but apparently it only checks and downloads the 0.12 version. Which apparently gives me an error similar to #44 and #42

Can't say if they are related or not. Original issue on videocr is here. apm1467/videocr#8 and here is the error which it throws https://pastebin.com/ksSVw1Wa

I tried downloading the VC redist files for VS2015/2017/2019 since it says it required VC++ 14.0 but it had no effect.

Thanks @offthewoll for the tip!

As an alternative approach, would this do the trick?

choco install visualstudio2019buildtools
choco install microsoft-visual-cpp-build-tools

I imagine that would work too but that involves Chocolatey being a dependency of a dependency (vsbuildtools) of a dependency (levenshtein) in order to use Fuzzywuzzy. @b-long