From 55d4702e4edacb7c1a9a94dbc06ea9879b896dd1 Mon Sep 17 00:00:00 2001 From: Manuel Garcia <31109774+Mandroide@users.noreply.github.com> Date: Mon, 15 Nov 2021 09:09:49 -0400 Subject: [PATCH] Reorder installation steps for paddledet in docs/tutorials/INSTALL.md (#4588) Reorder installation steps for paddledet in docs/tutorials/INSTALL.md --- docs/tutorials/INSTALL.md | 12 ++++++------ docs/tutorials/INSTALL_cn.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/tutorials/INSTALL.md b/docs/tutorials/INSTALL.md index 80af69cb0..3f7166287 100644 --- a/docs/tutorials/INSTALL.md +++ b/docs/tutorials/INSTALL.md @@ -77,13 +77,13 @@ python -c "import paddle; print(paddle.__version__)" cd git clone https://github.com/PaddlePaddle/PaddleDetection.git -# Compile and install paddledet -cd PaddleDetection -python setup.py install - # Install other dependencies +cd PaddleDetection pip install -r requirements.txt +# Compile and install paddledet +python setup.py install + ``` **Note** @@ -103,9 +103,9 @@ python ppdet/modeling/tests/test_architectures.py If the tests are passed, the following information will be prompted: ``` -..... +....... ---------------------------------------------------------------------- -Ran 5 tests in 4.280s +Ran 7 tests in 12.816s OK ``` diff --git a/docs/tutorials/INSTALL_cn.md b/docs/tutorials/INSTALL_cn.md index b0128f43f..0b0cacb58 100644 --- a/docs/tutorials/INSTALL_cn.md +++ b/docs/tutorials/INSTALL_cn.md @@ -70,10 +70,10 @@ cd git clone https://github.com/PaddlePaddle/PaddleDetection.git # 安装其他依赖 +cd PaddleDetection pip install -r requirements.txt # 编译安装paddledet -cd PaddleDetection python setup.py install ``` @@ -96,9 +96,9 @@ python ppdet/modeling/tests/test_architectures.py 测试通过后会提示如下信息: ``` -..... +....... ---------------------------------------------------------------------- -Ran 5 tests in 4.280s +Ran 7 tests in 12.816s OK ``` -- GitLab