From 67b59a674064f69656a7c28cb64f242be64ba6c8 Mon Sep 17 00:00:00 2001 From: Xiaozhe Yao Date: Wed, 17 Oct 2018 11:26:08 +0800 Subject: [PATCH] [docs] add an example in getting-started --- docs/en-US/guide/getting-started.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/en-US/guide/getting-started.md b/docs/en-US/guide/getting-started.md index 5a029351d..df75623a5 100644 --- a/docs/en-US/guide/getting-started.md +++ b/docs/en-US/guide/getting-started.md @@ -33,4 +33,13 @@ Or, RUN ```cvpm install https://github.com/vendor/repo``` to install a package f Before you run any of your installed repo, a daemon process must be enabled. Note that you only need to enable it once by running ```cvpm daemon install```. It may requires you administrator permission to install on most systems. -Some repos may have more than one solver in it, therefore, you have to know the exact solver name to run. By running ```cvpm run vendor/repo/solver```, you can start a service. +Some repos may have more than one solver in it, therefore, you have to know the exact solver name to run. By running ```cvpm run vendor/repo/solver port```, you can start a service. + +### Example + +For example, we have an official model named Face_Utility with three solvers. If you want to run a face detection solver, after your installation, simply do as following: + +``` +cvpm install https://github.com/cvmodel/Face_Utility +cvpm repo run cvmodel/Face_Utility/Face_Detection 8080 +``` \ No newline at end of file