import of package PyDSTool doesn't work

后端 未结 1 1417
旧巷少年郎
旧巷少年郎 2021-01-22 15:32

I tried to install the library PyDSTool via pip install in windows 7. Installed version PyDSTool == 0.90.2. Before that I installed dependencies numpy and scipy. Wwhen I tried

相关标签:
1条回答
  • 2021-01-22 15:45

    As Warren already suggested, replacing the following 2 lines (line 46-47) in parseUtils.py

    'h2vp', 'sph_jn', 'sph_yn', 'sph_jnyn', 'sph_in',
    'sph_kn', 'sph_inkn', 'riccati_jn', 'riccati_yn',
    

    to

    'h2vp', 'spherical_jn', 'spherical_yn', 'spherical_in',
    'spherical_kn', 'riccati_jn', 'riccati_yn',
    

    will solve your problem.

    0 讨论(0)
提交回复
热议问题