Currently I am working on voice recognition where I wanted to use Librosa library.
I install librosa with the command on ubuntu:
conda install -c conda-forge librosa
But when I run the code I got the following error:
import librosa
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-9-989066361697> in <module>
----> 1 import librosa
ModuleNotFoundError: No module named 'librosa'
Can anyone tell me how to use librosa?