我正在尝试将aubio软件包安装到64位windows 10上的Python上。
问题似乎是我不能造方向盘。
我收到一个对话框,上面写着"the program can't start because mspdb140.dll is missing from your computer. Try reinstalling the program to fix this problem."
不太确定它指的是哪个程序.
我已经下载了Visual C++ 14.0和aubio zip文件,我认为这是它告诉我我需要的:我尝试了pip安装,并下载了Visual C++ 14.0和aubio zip文件,我认为这正是我所需要的。
下面是我得到的最后一个错误代码:
Command "C:\Users\danci\Anaconda3\python.exe -u -c "import setuptools,
tokenize;__file__='C:\\Users\\danci\\AppData\\Local\\Temp\\pip-build-
d5772nkl\\aubio\\setup.py';f=getattr(tokenize, 'open', open)
(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code,
__file__, 'exec'))" install --record C:\Users\danci\AppData\Local\Temp\pip-
z8g1pk58-record\install-record.txt --single-version-externally-managed --
compile" failed with error code 1 in C:\Users\danci\AppData\Local\Temp\pip-
build-d5772nkl\aubio\另外,大约在安装过程中,我得到了以下内容:
File "C:\Users\danci\AppData\Local\Temp\pip-build-
d5772nkl\aubio\python\lib\gen_external.py", line 108, in get_c_declarations
raise Exception("preprocessor output is empty:\n%s" % err_output)
Exception: preprocessor output is empty:
b''
----------------------------------------
Failed building wheel for aubio谢谢。
发布于 2017-12-13 15:11:43
你的设置好像少了点什么。要在windows上编译python扩展,您需要编译用于构建python二进制文件的编译器。
请参阅有关windows编译器的页面,以查找要使用的正确版本:https://wiki.python.org/moin/WindowsCompilers
https://stackoverflow.com/questions/47706116
复制相似问题