I am trying to run Pymc3 inside virtual environment in Pycharm IDE, I am using Python 3.6 and installed PYMC3 through pip3. Using Anaconda is not an option, whenever I run my model I get following warning message
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.
In addition it is not allowing me to use more than 1 core,
Because I cannot use Anaconda , installing mingw through Anaconda is not an option. Is there a way to install mingw in my python virtual environment through PIp3?