1

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 ? Error

Wasim
  • 600
  • 2
  • 11
  • 32

1 Answers1

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