diff --git a/docs/tutorials/INSTALL.md b/docs/tutorials/INSTALL.md index 80af69cb0ae844c6f41cf95dc5d22022c0b6e701..3f716628756ad20781114f241950d5813a1fb547 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 b0128f43fff8fed20e672cb8c7190efb247200ac..0b0cacb5893963233e935a104291542159f4e294 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 ```