[Documentation] Update getting-started.
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Thu, 19 Jul 2018 02:22:12 +0000 (11:22 +0900)
committer오세원/Data Service Lab(SR)/Engineer/삼성전자 <sewon.oh@samsung.com>
Thu, 19 Jul 2018 08:18:09 +0000 (17:18 +0900)
As we now depend on tensorflow-lite-dev, update
pdebuild configuration accordingly.

Fixes #269

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Documentation/getting-started.md

index 1834e6d..72c1982 100644 (file)
@@ -72,16 +72,18 @@ First install the required packages.
 $ sudo apt install pbuilder debootstrap devscripts
 ```
 
-Then, create tarball that will contain your chroot environment to build package.
+Then, create tarball that will contain your chroot environment to build package. (for Ubuntu 16.04)
 ```bash
 $ vi ~/.pbuilderrc
 # man 5 pbuilderrc
 DISTRIBUTION=xenial
-OTHERMIRROR="deb http://archive.ubuntu.com/ubuntu xenial universe multiverse"
+# OTHERMIRROR="deb http://archive.ubuntu.com/ubuntu xenial universe multiverse"
+OTHERMIRROR="deb http://where.you.can.get.tensorflow.lite.deb.files/ /"
 $ sudo ln -s  ~/.pbuilderrc /root/.pbuilderrc
 $ sudo pbuilder create
-$ ls -al /var/cache/pbuilder/base.tgz
 ```
+Because Ubuntu 16.04 does not have tensorflow-lite-dev in its repository, you need to add
+a PPA repository or SPIN/OBS repository of TAOS:UbuntuTools.
 
 Generates .deb packages:
 ```bash