You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed the omnipose using pip and then tried to start it with command python -m omnipose, but got the following error:
Traceback (most recent call last):
File "", line 189, in run_module_as_main
File "", line 148, in get_module_details
File "", line 112, in get_module_details
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\omnipose_init.py", line 1, in
from . import core, utils, loss, plot, misc, cli, data, gpu
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\omnipose\misc.py", line 648, in
import peakdetect
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\peakdetect_init.py", line 3, in
from .peakdetect import *
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\peakdetect\peakdetect.py", line 5, in
from scipy import fft, ifft
ImportError: cannot import name 'ifft' from 'scipy' (C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\scipy_init.py). Did you mean: 'fft'?
Seems that the 'ifft' is depreciated from the scipy? See error message screenshot below
The text was updated successfully, but these errors were encountered:
I installed the omnipose using pip and then tried to start it with command
python -m omnipose
, but got the following error:Traceback (most recent call last):
File "", line 189, in run_module_as_main
File "", line 148, in get_module_details
File "", line 112, in get_module_details
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\omnipose_init.py", line 1, in
from . import core, utils, loss, plot, misc, cli, data, gpu
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\omnipose\misc.py", line 648, in
import peakdetect
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\peakdetect_init.py", line 3, in
from .peakdetect import *
File "C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\peakdetect\peakdetect.py", line 5, in
from scipy import fft, ifft
ImportError: cannot import name 'ifft' from 'scipy' (C:\Users\jyl51\AppData\Local\Programs\Python\Python312\Lib\site-packages\scipy_init.py). Did you mean: 'fft'?
Seems that the 'ifft' is depreciated from the scipy? See error message screenshot below
The text was updated successfully, but these errors were encountered: