diff --git a/deploy/hubserving/ocr_det/module.py b/deploy/hubserving/ocr_det/module.py index 7c11d1faa32240b0a03f996b15631f9a64aa71b2..d2cecaa475961e273b7dfcf68e9a0a991b21a69e 100644 --- a/deploy/hubserving/ocr_det/module.py +++ b/deploy/hubserving/ocr_det/module.py @@ -5,9 +5,7 @@ from __future__ import print_function import os import sys -__dir__ = os.path.dirname(os.path.abspath(__file__)) -sys.path.append(__dir__) -sys.path.append(os.path.abspath(os.path.join(__dir__, '../../../'))) +sys.path.insert(0, ".") import argparse import ast diff --git a/deploy/hubserving/ocr_rec/module.py b/deploy/hubserving/ocr_rec/module.py index 781214f9c9c6470ae6034f76d7c670c9ab65dcb4..e2d0bfdda3cf10dd425b09eaf41f48b43592d921 100644 --- a/deploy/hubserving/ocr_rec/module.py +++ b/deploy/hubserving/ocr_rec/module.py @@ -5,9 +5,7 @@ from __future__ import print_function import os import sys -__dir__ = os.path.dirname(os.path.abspath(__file__)) -sys.path.append(__dir__) -sys.path.append(os.path.abspath(os.path.join(__dir__, '../../../'))) +sys.path.insert(0, ".") import argparse import ast diff --git a/deploy/hubserving/ocr_system/module.py b/deploy/hubserving/ocr_system/module.py index f2a4ed996d754508a81df5710af951d9613b05eb..a959fc0e063597acda3d6a6f0d5828b73db0be2e 100644 --- a/deploy/hubserving/ocr_system/module.py +++ b/deploy/hubserving/ocr_system/module.py @@ -5,10 +5,7 @@ from __future__ import print_function import os import sys - -__dir__ = os.path.dirname(os.path.abspath(__file__)) -sys.path.append(__dir__) -sys.path.append(os.path.abspath(os.path.join(__dir__, '../../../'))) +sys.path.insert(0, ".") import argparse import ast diff --git a/deploy/hubserving/readme.md b/deploy/hubserving/readme.md index c7068d91b42f1e809190c0e44bc6ac97443c9348..56217a9c6f356f2594d4be963ab7bfcd1e5bf9e0 100644 --- a/deploy/hubserving/readme.md +++ b/deploy/hubserving/readme.md @@ -1,7 +1,7 @@ [English](readme_en.md) | 简体中文 PaddleOCR提供2种服务部署方式: -- 基于PaddleHub Serving的部署:代码路径为"`./deploy/hubserving`",按照本教程使用; +- 基于PaddleHub Serving的部署:代码路径为"`./deploy/hubserving`",按照本教程使用; - 基于PaddleServing的部署:代码路径为"`./deploy/pdserving`",使用方法参考[文档](../pdserving/readme.md)。 # 基于PaddleHub Serving的服务部署 @@ -29,12 +29,6 @@ deploy/hubserving/ocr_system/ ```shell # 安装paddlehub pip3 install paddlehub --upgrade -i https://pypi.tuna.tsinghua.edu.cn/simple - -# 在Linux下设置环境变量 -export PYTHONPATH=. - -# 或者,在Windows下设置环境变量 -SET PYTHONPATH=. ``` ### 2. 下载推理模型 diff --git a/deploy/hubserving/readme_en.md b/deploy/hubserving/readme_en.md index 48b519ae24199d3778dcf2d2a1dea785aa0503a4..f41fb3f689905e331699a12fd748fb50a9455c49 100644 --- a/deploy/hubserving/readme_en.md +++ b/deploy/hubserving/readme_en.md @@ -1,7 +1,7 @@ English | [简体中文](readme.md) -PaddleOCR provides 2 service deployment methods: -- Based on **PaddleHub Serving**: Code path is "`./deploy/hubserving`". Please follow this tutorial. +PaddleOCR provides 2 service deployment methods: +- Based on **PaddleHub Serving**: Code path is "`./deploy/hubserving`". Please follow this tutorial. - Based on **PaddleServing**: Code path is "`./deploy/pdserving`". Please refer to the [tutorial](../pdserving/readme_en.md) for usage. # Service deployment based on PaddleHub Serving @@ -30,12 +30,6 @@ The following steps take the 2-stage series service as an example. If only the d ```shell # Install paddlehub pip3 install paddlehub --upgrade -i https://pypi.tuna.tsinghua.edu.cn/simple - -# Set environment variables on Linux -export PYTHONPATH=. - -# Set environment variables on Windows -SET PYTHONPATH=. ``` ### 2. Download inference model