-
安装soundfile库
python中处理音频文件,经常要使用soundfile库。ubuntu系统在pip安装soundfile库时,有时会报错,这是因为缺乏依赖包libsndfile1,所以要先安装依赖包,命令如下:
sudo apt-get install libsndfile1
安装成功后,就可以顺利安装soundfile库,指令如下:
pip install soundfile
在python3环境下安装,指令如下:
pip3 install soundfile
python中处理音频文件,经常要使用soundfile库。ubuntu系统在pip安装soundfile库时,有时会报错,这是因为缺乏依赖包libsndfile1,所以要先安装依赖包,命令如下:
sudo apt-get install libsndfile1
安装成功后,就可以顺利安装soundfile库,指令如下:
pip install soundfile
在python3环境下安装,指令如下:
pip3 install soundfile