You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,20 +33,20 @@ CppFlow uses [Tensorflow C API](https://www.tensorflow.org/install/lang_c) to ru
33
33
34
34
Since it uses TensorFlow 2 C API you just have to [download it](https://www.tensorflow.org/install/lang_c), check the [docs](https://serizba.github.io/cppflow/installation.html) to see a guide on how to do it.
35
35
36
-
You can either install the library system wide or you can just place the contents of the archive in a folder called `libtensorflow2` in your HOME directory.
37
-
38
-
Afterwards, you can run the examples:
36
+
Afterwards, you can install the library:
39
37
40
38
```sh
41
39
git clone git@github.com:serizba/cppflow.git
42
40
cd cppflow/examples/load_model
43
41
mkdir build
44
42
cd build
45
43
cmake ..
46
-
make
47
-
./example
44
+
make -j
45
+
make install
48
46
```
49
47
48
+
Now you can check the [quickstart guide](https://serizba.github.io/cppflow/quickstart.html) to run a program using cppflow.
0 commit comments