当前位置:网站首页>Paddleocr tutorial

Paddleocr tutorial

2022-07-04 23:21:00 Acegem

Artificial intelligence

python, Deep learning , Computer vision

PaddleOCR course

One 、 install

#  To avoid dependency conflicts , Creating a virtual environment , be known as PaddleOCR, among python Version adopts 3.7.6
(base)$ conda create -n PaddleOCR python=3.7.6
#  Activate the virtual environment PaddleOCR
(base)$ conda activate PaddleOCR

#  Upgrade the virtual environment first pip
(PaddleOCR)$ python -m pip install -U pip
#  Install... In a virtual environment paddlepaddle, Version is 2.0.0b0,
(PaddleOCR)$ python -m pip install paddlepaddle==2.0.0b0 -i https://mirror.baidu.com/pypi/simple

#  download PaddleOCR Source code 
(PaddleOCR)$ git clone https://gitee.com/paddlepaddle/PaddleOCR
#  install PaddleOCR Source package ( Related dependencies )
(PaddleOCR)$ cd PaddleOCR
(PaddleOCR)$ pip install -r requirements.txt
原网站

版权声明
本文为[Acegem]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/185/202207042303325194.html