回答編集履歴
1
公式レポ追加
answer
CHANGED
@@ -35,4 +35,12 @@
|
|
35
35
|
raise ValueError("Unknown MS Compiler version %s " % msc_ver)
|
36
36
|
```
|
37
37
|
|
38
|
-
**%PYTHON_HOME%**は`where python`で調べる事ができる。
|
38
|
+
**%PYTHON_HOME%**は`where python`で調べる事ができる。
|
39
|
+
ソース元はAnaconda3.7のdistutils、オリジナルはもう管理していない。
|
40
|
+
|
41
|
+
追記
|
42
|
+
----
|
43
|
+
* [msvcr140.dll has been replaced with vcruntime140.dll](https://bugs.python.org/issue32535)
|
44
|
+
* [Visual C++ ランタイムのバージョンとサポートされる OS について](https://docs.microsoft.com/ja-jp/archive/blogs/jpvsblog/visual-c-os)
|
45
|
+
* [How to correctly link to UCRT](https://mingwpy.github.io/ucrt.html)
|
46
|
+
リンクを見ると`vcruntime140`が正しそうに見えるがビルドできず、結局のところ`ucrtbase`が正しいとmingwpyの説明。最近の文系プログラマ向けスクールサイトのSEOが妙に高いせいで正しい情報に行きつきにくい。
|