配置paddleocr及paddlepaddle解决报错 GLIBCXX_3.4.30 FreeTypeFont

发布时间:2023年12月20日

配置

https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.7/StyleText/README_ch.md#style-text

  1. 环境配置
    https://www.paddlepaddle.org.cn/
    根据自己的cuda版本选择paddlepaddle-gpu
# 新建conda环境
# python version
conda create -n paddle python==3.8
# 安装paddlepaddle   
python -m pip install paddlepaddle-gpu==2.5.1.post120 -f https://www.paddlepaddle.org.cn/whl/linux/mkl/avx/stable.html

# paddleocr
git clone https://github.com/PaddlePaddle/PaddleOCR
cd PaddleOCR
pip3 install -r requirements.txt

  1. 报错

anaconda环境version `GLIBCXX_3.4.30‘ not found

attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘

pip uninstall Pillow
pip install Pillow==9.5
  1. 使用
conda activate paddle
cd PaddleOCR/StyleText

# 单张 
python3 tools/synth_image.py -c configs/config.yml --style_image examples/style_images/1_27RL.png --text_corpus PaddleOCR --language en

# 批量
python3 tools/synth_dataset.py -c configs/dataset_config.yml
文章来源:https://blog.csdn.net/qq_44461900/article/details/135076900
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。