FileNotFoundError: [WinError 2] system can't find the file specified
问题 I used to load waveform file with librosa but failed I tried to check the kernel.jason file to fix it import librosa import matplotlib.pyplot as plt import numpy as np import librosa.display import IPython.display as ipd %matplotlib inline filepath = './audio_train/happy/' filename = filepath + '00334.wav' y, sr = librosa.load(filename, sr=None) FileNotFoundError: [WinError 2] The system cannot find the file specified. 回答1: i fix this problem by entering conda install -c conda-forge librosa