红联Linux门户
Linux帮助

更新PIL遇到NotImplementedError: tostring() has been removed

发布时间:2017-05-01 15:11:02来源:linux网站作者:hjxu2016
在调用python-openslide库时,一时脑抽,更新了scikit这个库:
sudo pip install --upgrade scikit-image  
 
再运行就遇到:NotImplementedError: tostring() has been removed. Please call tobytes() instead这个问题,这应该是PIL这个库更新后,tostring被舍弃了,叫做tobytes了。
 
我们根据错误可以找到Image.py这里面的出错点。
通过查找“tostring”,找到如下所示的代码:
更新PIL遇到NotImplementedError: tostring() has been removed
改成如下所示:
更新PIL遇到NotImplementedError: tostring() has been removed
然后重新运行代码。python的库是不允许修改的,下面提供修改方法:
 
先cd到site-packages这个文件夹
cd /usr/local/lib/python2.7/dist-packages/
然后修改PIL的权限
sudo chmod -R 777 PIL
然后就可以修改Image.py这个库了,修改完记得给PIL重新加上权限,防止以后不小心修改了库:
sudo chmod -R 444 PIL
再运行应该就没有问题了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/30432.html