-
Notifications
You must be signed in to change notification settings - Fork 0
/
google_assistant_code.txt
65 lines (39 loc) · 1.75 KB
/
google_assistant_code.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
SDK 및 샘플코드 설치
sudo apt-get update
sudo apt-get install python3-dev python3-venv
python3 -m venv env
env/bin/python -m pip install --upgrade pip setuptools wheel
source env/bin/activate
sudo apt-get install portaudio19-dev libffi-dev libssl-dev
python -m pip install --upgrade google-assistant-sdk[samples]
자격증명하기
python -m pip install --upgrade google-auth-oauthlib[tool]
샘플코드 실행방법
googlesamples-assistant-pushtotalk --project-id my-dev-project --device-model-id my-model
my-dev-project >> https://console.actions.google.com/
googlesamples-assistant-pushtotalk --project-id happy-47e7a --device-model-id happy-47e7a-h.smartbot-yqrpeg --lang ko-kr
가상환경 나갔다가 다시 실행하기
deactivate
sudo reboot
source env/bin/activate
실행 명령어 다시 넣기
23. 엔터키 누르지 않고 바로 실행하기
https://developers.google.com/assistant/sdk/guides/service/python/extend/handle-device-commands
실행 명령어 >> git clone https://github.com/googlesamples/assistant-sdk-python
파일 다운로드 받고.
해당 디렉토리의 특정 파일을 수정
assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc/pushtotalk.py
해당 디렉토리까지 이동 후 nano pushtotalk.py 열어 수정해주세요.
아니면.. 해당 파일 다운로드 후 수정하고, 다시 업로드...
수정 파일 라인 : 457번째 줄
#click.pause(info='Press Enter to send a new request...')
time.sleep(1)
수정후 해당 파일로 실행하기
nano startgoogle.sh
>>> 파일 내용은..
#!/bin/bash
source /home/pi/env/bin/activate
python3 /home/pi/assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc/pushtotalk.py
>> Ctrl + o >> 엔터 >> Ctrl + x
실행은... .
./startgoogle.sh