Cannot configure Python 3.5 to use Visual C ++ compiler on Windows

When I used Python 3.4, I used MinGW to compile modules. Unfortunately, support for 3.5 MinGW no longer works. I installed the correct Visual C ++ stuff, but pip is still trying to use the MinGW compiler and is not working.

How do I say to use the correct compiler?

+5
source share
2 answers

In the end, I bought a new computer that did not have a problem. So, your decision.

-1
source

Try the following:

 [build] compiler=msvc 
+1
source

All Articles