└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # libtensorflow.so for Raspberry Pi 2 | 3 | This repository is for storing pre-built **libtensorflow.so** files. 4 | 5 | Read [this post](https://blog.meinside.pe.kr/TensorFlow-and-Go-on-Raspberry-Pi/) if you want to build one yourself. 6 | 7 | ## How to use 8 | 9 | Download the .tgz file from [here](https://github.com/meinside/libtensorflow.so-raspberrypi/releases). 10 | 11 | Unzip it and move it into `/usr/local/lib`. 12 | 13 | ```bash 14 | $ tar -xzvf libtensorflow_v0.0.0_2999-12-31.tgz 15 | $ sudo mv libtensorflow.so /usr/local/lib/ 16 | $ sudo ldconfig 17 | ``` 18 | --------------------------------------------------------------------------------