From 2d8d243012c9f75a6dcb060899e025d8c73b658a Mon Sep 17 00:00:00 2001 From: hz1943 <40231920+hz1943@users.noreply.github.com> Date: Fri, 17 Sep 2021 16:36:34 +0800 Subject: [PATCH] Change installation order of PaddleDetection (#4194) Using original order will cause weird exception, like "RuntimeError.. --- docs/tutorials/INSTALL_cn.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/INSTALL_cn.md b/docs/tutorials/INSTALL_cn.md index 8c820b0cd..3b9c2308d 100644 --- a/docs/tutorials/INSTALL_cn.md +++ b/docs/tutorials/INSTALL_cn.md @@ -67,12 +67,12 @@ python -c "import paddle; print(paddle.__version__)" cd git clone https://github.com/PaddlePaddle/PaddleDetection.git +# 安装其他依赖 +pip install -r requirements.txt + # 编译安装paddledet cd PaddleDetection python setup.py install - -# 安装其他依赖 -pip install -r requirements.txt ``` **注意** -- GitLab