How to change default Python compiler in GCC?

I have installed Windows 10 and Python 2.7. When I run IDLE, I find this: Python 2.7.10 (default, Oct. 14 2015, 16:09:02) [MSC v.1500 32 bit (Intel)]

I want the default compiler to be MinGW GCC (I already installed MinGW) becaue I cannot import Theano with the MSC compiler

I tried all the tutorials there, and every time I successfully installed Theano, but when I try to import it, I get the error message "The problem occurred during compilation using the command line below", and I get a huge list of errors. By the way, I do not have VS installed on my system

+2
source share
1 answer

Distutils C:\Python2.7\Lib\distutils\distutils.cfg( , ).

:

[]

compiler = mingw32

.

+1

Source: https://habr.com/ru/post/1016271/


All Articles