visual-c++

LNK1181: cannot open input file 'm.lib'

LNK1181: cannot open input file 'm.lib' Question: When trying to install a certain Python geophysical toolkit, I get this error: LINK : fatal error LNK1181: cannot open input file ‘m.lib’ I believe it is due to my use of the MSVC’s buildtools. In their setup.py I found: setup(…, ext_modules=[ Extension(…, […], libraries=[‘m’], … ]) What …

Total answers: 2

Calling MATLAB functions from python

Calling MATLAB functions from python Question: Is it possible to run MATLAB functions from within Python? I search the internet, I could only find PyMat. The bad thing is the compiled version only supports Python2.2 and I am using 2.6. So I tried to download the source code, so I can compile it for myself. …

Total answers: 10

What version of Visual Studio is Python on my computer compiled with?

What version of Visual Studio is Python on my computer compiled with? Question: I am trying to find out the version of Visual Studio that is used to compile the Python on my computer It says Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 What I do not understand …

Total answers: 2