From 665d2713e9a1c9ca1f08cfd40722f617603aebe4 Mon Sep 17 00:00:00 2001 From: Mohammad Mahbubuzzaman Date: Thu, 11 Jul 2019 10:48:21 -0700 Subject: [PATCH] Fixes command to check paddle paddle installation --- PaddleCV/PaddleDetection/docs/INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PaddleCV/PaddleDetection/docs/INSTALL.md b/PaddleCV/PaddleDetection/docs/INSTALL.md index b4b3b059..10e61c44 100644 --- a/PaddleCV/PaddleDetection/docs/INSTALL.md +++ b/PaddleCV/PaddleDetection/docs/INSTALL.md @@ -27,7 +27,7 @@ of your PaddlePaddle is not lower than required. Verify with the following comma ``` # To check if PaddlePaddle installation was sucessful -python -c "from paddle.fluid import fluid; fluid.install_check.run_check()" +python -c "from paddle import fluid; fluid.install_check.run_check()" # To check PaddlePaddle version python -c "import paddle; print(paddle.__version__)" -- GitLab