AttributeError: module ‘paddle.distributed‘ has no attribute ‘get_rank‘

1.问题描述

win10环境下,使用paddleocr 对图片进行文字识别,报错:AttributeError: module 'paddle.distributed' has no attribute 'get_rank'   

如下图所示

AttributeError: module ‘paddle.distributed‘ has no attribute ‘get_rank‘_第1张图片

2.原因分析

检查paddlepaddle是否正确安装

AttributeError: module ‘paddle.distributed‘ has no attribute ‘get_rank‘_第2张图片

我安装的paddlepaddle版本是1.7.2,paddleocr的版本是2.0.2 ,可能是二者不兼容的问题。

另外确保Python的版本是3.7

3.解决办法

(1)卸载当前版本的paddlepaddle

pip uninstall paddlepaddle

(2)安装最新版本的paddlepaddle

python -m pip install paddlepaddle==2.0.0rc1 -i https://mirror.baidu.com/pypi/simple

(3)再次检查

再运行程序就没问题了

你可能感兴趣的:(深度学习,Python,paddlepaddle,ocr,深度学习,python)