1.直接按照阿里云表格存储官网的提示执行:
sudo pip install tablestore
执行完成后 在python 2.7上 import tablestore报错
报错截图解决办法:
第一步:sudo pip uninstall protobuf
第二步:sudo pip install protobuf==3.6.1
完成。
问题原因:
直接 install tablestore,会安装最新的protobuf,最新的protobuf不兼容python 2。
降低下protobuf的版本即可
网友评论