I'm trying to follow this installation guide for Jasper https://jasperproject.github.io/documentation/installation/. However, when I try to run sudo make install
in the openfst-1.3.4/ folder, the installation will start and get to a random point before seemingly freezing up and not progressing. I am attempting to install this on a pi3 b+. Any help would be much appreciated.
Asked
Active
Viewed 52 times
0

Jack Johns
- 59
- 7
1 Answers
0
Openfst uses heavy C++ features and compilation requires a lot of memory. Possible workarounds:
- If you run make -j, use just one job
- Use clang to compile instead of gcc, clang is more resource-efficient
- Free some memory by releasing video buffer on PI and so on.
- Cross-compile (easiest thing).

Nikolay Shmyrev
- 24,897
- 5
- 43
- 87