ImportError: No module named fixedpickle when running PyDsTool on Windows 7

跟風遠走 提交于 2019-11-30 19:44:27

问题


I have downloaded PyDsTool for Windows. And I believe I have pointed python in the correct location. But I get the following error

from PyDSTool import *
Traceback (most recent call last):

  File "<ipython-input-1-7b811358a37e>", line 1, in <module>
    from PyDSTool import *

  File "C:\Anaconda\lib\site-packages\pydstool-0.88.140328-py2.7.egg\PyDSTool\__init__.py", line 85, in <module>
    from .Events import *

  File "C:\Anaconda\lib\site-packages\pydstool-0.88.140328-py2.7.egg\PyDSTool\Events.py", line 13, in <module>
    from .Variable import *

  File "C:\Anaconda\lib\site-packages\pydstool-0.88.140328-py2.7.egg\PyDSTool\Variable.py", line 10, in <module>
    from .utils import *

  File "C:\Anaconda\lib\site-packages\pydstool-0.88.140328-py2.7.egg\PyDSTool\utils.py", line 8, in <module>
    from .common import *

  File "C:\Anaconda\lib\site-packages\pydstool-0.88.140328-py2.7.egg\PyDSTool\common.py", line 53, in <module>
    import fixedpickle as pickle

ImportError: No module named fixedpickle

回答1:


I solve this problem through uninstalling and reinstalling anaconda. Otherwise the installation of PyDsTools is very simple. It is not really installation at all, just unpack the zip folder and make sure it is in your python path (also add its parent directories to the python path). This may be done through Spyder IDE. Click tools> pythonpath

I received some assistance from the Sourceforge support thread for the PyDStool project here



来源:https://stackoverflow.com/questions/28515710/importerror-no-module-named-fixedpickle-when-running-pydstool-on-windows-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!