我有一个在 Heroku 上运行的 python flask 应用程序,它使用了soundfile库。添加soundfile到requirements.txtHeroku 后给了我这个错误:
raise OSError('sndfile library not found')
Run Code Online (Sandbox Code Playgroud)
我查了一下,读到我需要libsndfile1导入库。但是当我也将其添加到时requirements.txt,构建失败并出现错误:
找不到与 libsndfile1 匹配的发行版
是否有导入此包的解决方法,以便我可以soundfile在 Heroku 上使用?