I have installed Librosa using this command "pip install librosa"
and it is successfully installed . But when I execute "import librosa"
in Jupyter Notebook it gives error. Can anyone help ?
Asked
Active
Viewed 5,156 times
1

Wasim
- 600
- 2
- 11
- 32
1 Answers
4
I've run into this problem a couple of times. You can try to use pip directly from your notebook:
# Install a pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install <package>
Read this. It helped me a lot.

RobC
- 22,977
- 20
- 73
- 80

Rodrigo Fagundes
- 56
- 3