Как я могу установить theano с pip в windows для python 3.7? - PullRequest
0 голосов
/ 11 июля 2019

Я уже установил theano, но с кодом запуска вроде:

from theano import *
print(theano.__version__)

Я получаю это:

    WARNING (theano.configdefaults): g++ not available, if using conda: `conda install m2w64-toolchain`
C:\Users\Im\AppData\Local\Programs\Python\Python37-32\lib\site-packages\theano\configdefaults.py:560: UserWarning: DeprecationWarning: there is no c++ compiler.This is deprecated and with Theano 0.11 a c++ compiler will be mandatory
  warnings.warn("DeprecationWarning: there is no c++ compiler."
WARNING (theano.configdefaults): g++ not detected ! Theano will be unable to execute optimized C-implementations (for both CPU and GPU) and will default to Python implementations. Performance will be severely degraded. To remove this warning, set Theano flags cxx to an empty string.
WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions.
1.0.4

Итак, я попытался найти какое-то решение, и везде есть решение с анакондой, но я не хочу устанавливать conda! И что мне делать дальше? Что и как мне установить для корректной работы?

...