This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Bruno Abreu Calfa
Recipients Bruno Abreu Calfa, dstufft, eric.araujo
Date 2018-01-11.16:34:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515688473.22.0.467229070634.issue32535@psf.upfronthosting.co.za>
In-reply-to
Content
File msvcr140.dll does not exist after installing Microsoft Visual C++ 2015 Redistributable or Visual Studio 2015. It has been replaced with vcruntime140.dll. See discussion here: https://groups.google.com/a/continuum.io/forum/#!topic/anaconda/yLH46ilPQeo

In addition, I was only able to build an extension (https://github.com/mattjj/pyhsmm) after copying the vcruntime140.dll from the Python installation folder (Anaconda 3 5.0.1 64-bit, Python 3.6.3) to the libs folder. I also had to change file include/pyconfig.h by removing the definitions of hypot (https://github.com/python/cpython/pull/880).

In sum, I suggest replacing

return ['msvcr140']

with

return ['vcruntime140']
History
Date User Action Args
2018-01-11 16:34:33Bruno Abreu Calfasetrecipients: + Bruno Abreu Calfa, eric.araujo, dstufft
2018-01-11 16:34:33Bruno Abreu Calfasetmessageid: <1515688473.22.0.467229070634.issue32535@psf.upfronthosting.co.za>
2018-01-11 16:34:33Bruno Abreu Calfalinkissue32535 messages
2018-01-11 16:34:33Bruno Abreu Calfacreate