You need to sign in or sign up before continuing.
client.sh 307 字节
Newer Older
1
#!/bin/bash
2

H
Hui Zhang 已提交
3
source path.sh
4

H
Hui Zhang 已提交
5 6 7 8 9
# run on MacOS
# brew install portaudio
# pip install pyaudio
# pip install keyboard

10
# start demo client
H
Hui Zhang 已提交
11
python3 -u ${BIN_DIR}/deploy/client.py \
H
Hui Zhang 已提交
12
--host_ip="localhost" \
13 14 15 16 17 18 19 20
--host_port=8086 \

if [ $? -ne 0 ]; then
    echo "Failed in starting demo client!"
    exit 1
fi

exit 0