I have a python flask app I'm running on Heroku which uses the soundfile
library. After adding soundfile
to requirements.txt
Heroku gave me this error:
raise OSError('sndfile library not found')
I looked it up and read that I needed the libsndfile1
library imported. But when I added that to the requirements.txt
as well, the build failed with the error:
No matching distribution found for libsndfile1
Is there a workaround for importing this package so I can use soundfile
on Heroku?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…