fastdtw icon indicating copy to clipboard operation
fastdtw copied to clipboard

one question

Open zhaojc001 opened this issue 5 years ago • 2 comments

when i run the following code,it appears the error,please help me: from fastdtw import fastdtw ImportError: cannot import name 'fastdtw'

zhaojc001 avatar Oct 28 '19 07:10 zhaojc001

Hi, haven't you solved this problem yet? I could it as follows. python version is 3.6.4.

pip install fastdtw
>> from fastdtw import fastdtw

knakajima3027 avatar Jan 31 '20 14:01 knakajima3027

Are you using a virtual environment or the base interpreter?

If you installed the package through pip, then, in either case, check if fastdtw is in /lib/python/site-packages/.

or use: pip freeze to get the list of installed packages and see if fastdtw is in there.

ApocalyVec avatar Jan 31 '20 17:01 ApocalyVec