我尝试通过 pycahrm 安装 pip,但出现以下错误:
numpy.distutils.system_info.NotFoundError: SRC (http://www.mega-nerd.com/SRC/)library not found. Directories to search
for the libraries can be specified in the site.cfg file, in section
[samplerate].
所以我去了给定的链接并下载了所需的文件。我再次运行安装并得到同样的错误。
我去了这里:http ://cournape.github.io/audiolab/installing.html#download
并发现:“...您需要创建一个文件 site.cfg 来设置 libsndfile 及其标头的位置(有 site.cfg 示例应该让您了解如何在您的平台上使用它们)。”
在我从以下位置下载模块后:https://pypi.python.org/pypi/scikits.samplerate,(我检查了记事本++中的示例,它说的是:'[samplerate]')我创建了文件,这就是放入其中的内容:
C:\Program Files (x86)\Mega-Nerd\libsndfile
我做了 python setup.py install 并收到以下错误:
raise MissingSectionHeaderError(fpname, lineno, line)
Config.parser.MissingSectionHeaderError:文件包含节标题。C:\...\site.cfg,第 1 行'C:\Program Files (x86)\Mega-Nerd\libsndfile
它在寻找什么标题?如何修复此错误以便我可以安装 scikts-samplerate?