2

I was trying to import librosa which gave me multiple errors like the absence of audioread, resampy etc. I tried to install all these manually. It is still showing an error in resampy.

C:\Users\asus\AppData\Roaming\Python\Python37\site-packages\resampy\interpn.py in <module>
     73 @guvectorize(
     74     "(n),(m),(p),(p),(),()->(m)",
---> 75     nopython=True,
     76 )
     77 def resample_f_p(x, t_out, interp_win, interp_delta, num_table, scale, y):

TypeError: guvectorize() missing 1 required positional argument: 'signature'
buran
  • 13,682
  • 10
  • 36
  • 61
Jahang
  • 31
  • 1
  • 2

2 Answers2

9

I solved the error by downgrading 'resampy' from version 0.4.2 to 0.3.1.

1

Downgrade 'resampy' from version 0.4.2 to 0.2.2

Sahil Goyal
  • 11
  • 1
  • 1