When I try to install certain Python geophysical instrumentation, I get this error:
LINK: fatal error LNK1181: cannot open input file 'm.lib'
I believe this is due to the use of MSVC buildtools. In their setup.py I found:
setup(β¦, ext_modules=[ Extension(β¦, [β¦], libraries=['m'], β¦ ])
What do I need to change in this setup.py - and related files? - to do this job. IIRC is a library other than m that I should use.
source share