0

我正在尝试在64 位 windows 10上将 pip install aubio 包安装到 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

谢谢。

4

1 回答 1

0

您的设置似乎缺少某些内容。要在 Windows 上编译 python 扩展,您将需要用于构建 python 二进制文件的编译器。

请参阅有关 windows 编译器的此页面以找出要使用的正确版本:https ://wiki.python.org/moin/WindowsCompilers

于 2017-12-13T15:11:43.177 回答