Compile python extension for different C++ runtime
问题 I am developing a plugin for plex media server. Plex uses Python 2.7 for plugin system. I need to use python-levenshtein package, which needs to be compiled for different systems. I found python-Levenshtein wheels (manylinux, macos, arm, windows), but the wheel for Windows compiled with VS 2008 (msvcr90.dll). And plex embeded python compiled with VS 2013 (msvcr130.dll). Being on Windows 10 how can i compile python package with different VS runtimes? 回答1: Note: compiling extensions for