How to fix Python ValueError:bad marshal data?

后端 未结 7 2418
梦毁少年i
梦毁少年i 2020-12-01 06:20

Running flexget Python script in Ubuntu, I get an error:

$ flexget series forget \"Orange is the new black\" s03e01
Traceback (most recent call last):
File \         


        
相关标签:
7条回答
  • 2020-12-01 06:50

    This can happen if you have Python 2.7 .pyc files and you try to load them using Python 3.5. In my case this was a third-party tarball that erroneously included pre-compiled Python 2.7 .pyc files along with the source code.

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