python

2019

Python下的音频处理库librosa打开文件是显示NoBackendError的解决

近日在 django 项目中采用了 librosa 来分析用户上传的音频,主要是对其做一定间隔的采样用于绘制波形图。在本地(MacOS)上工作正常,部署到 Ubuntu 服务器后,自己手动用 python 方式运行 django 的 server 时,工作都是正常的,然而当我用 superviosr 挂起之后就一直报 NoBackendError 的错误,反复检查了 FFmpeg 的安装,应该是没有问题的。网上搜了一下没有看到比较合适的解决办法,故不得不自己读源码来调试了。

Jun 26
Matplotlib in Virtualenv

我使用的是 macOS 系统。当在虚拟环境中尝试使用 matplotlib 时,会出现如下的报错:

1
ImportError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more informatio
May 16