How to fix Python ValueError:bad marshal data?

后端 未结 7 2442
梦毁少年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:46

    I solved this problem by the following procedure :

    In the error code message, you can see from sqlalchemy.ext.declarative import declarative_base cause this error.

    So just pip uninstall sqlalchemy and pip install sqlalchemy, problem solved.

提交回复
热议问题