Skip to content

Commit

Permalink
Merge pull request #1 from gaikwadrahul8/gaikwadrahul8-tflite-minimal…
Browse files Browse the repository at this point in the history
…-example

Updated Install libffi7 package step
  • Loading branch information
gaikwadrahul8 committed Feb 12, 2023
2 parents 7f74448 + e06346c commit 43f73f8
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions tensorflow/lite/examples/minimal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,31 @@ sudo apt-get install cmake
Or you can follow
[the official cmake installation guide](https://cmake.org/install/)

#### Step 2. Clone TensorFlow repository
#### Step 2. Install libffi7 package(Optional)

It requires libffi7. On Ubuntu 20.10 or later, you can simply run the following
command.

```sh
wget http://es.archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi7_3.3-4_amd64.deb
sudo dpkg -i libffi7_3.3-4_amd64.deb
```

#### Step 3. Clone TensorFlow repository

```sh
git clone https://github.com/tensorflow/tensorflow.git tensorflow_src
```

#### Step 3. Create CMake build directory and run CMake tool
#### Step 4. Create CMake build directory and run CMake tool

```sh
mkdir minimal_build
cd minimal_build
cmake ../tensorflow_src/tensorflow/lite/examples/minimal
```

#### Step 4. Build TensorFlow Lite
#### Step 5. Build TensorFlow Lite

In the minimal_build directory,

Expand Down

0 comments on commit 43f73f8

Please sign in to comment.