今天从源码安装paddlenlp的时候出现了下面的问题:

......
paddlenlp.datasets.__pycache__.dataset.cpython-37:...
zip_safe flag not set ; analyzing archive contents
....
ValueError: bad marshal data (unknown type code)

我试了一下网上的删除的方法,发现不起作用,最后直接重新clone了一份代码:

git clone https://github.com/PaddlePaddle/PaddleNLP.git
cd PaddleNLP
python setup.py install

然后就安装成功了哈。

Finished processing dependencies for paddlenlp==2.3.0.dev0
......