ggerganov / kbd-audio

🎤⌨️ Acoustic keyboard eavesdropping
https://ggerganov.github.io/keytap
MIT License
8.54k stars 586 forks source link

Incompleted Readme file (Is this just typo?) #7

Closed mindgitrwx closed 5 years ago

mindgitrwx commented 5 years ago

It is not work correctly.

cd kbd-audio
git submodule update --init
mkdir build && cd build
cmake ..
make

It must changed like this way on my ubuntu enviroment.

cd kbd-audio
git submodule update --init
mkdir build && cd build
cmake .
make
ggerganov commented 5 years ago

No, it's not a typo. My guess is you already have the "build" subfolder created and the mkdir build && cd build line fails because the folder already exist. You can either delete the folder and rerun the commands as they are, or simply cd build and cmake ..