如何在 Windows 10 上安装 Google 助理
如何在 Windows 10 上安装 Google Assistant: (How to Install Google Assistant on Windows 10: )Google Assistant是 Google 推出的一款虚拟个人助理,用于(Google)Android设备(Android),以进入 AI 助理市场。今天(Today),许多人工智能助手都声称自己是最好的,比如Siri、亚马逊 Alexa(Amazon Alexa)、Cortana等。然而,到目前为止,谷歌助手(Google Assistant)是市场上最好的助手之一。Google Assistant的唯一问题是它在 PC 上不可用,因为它只在移动和智能家居设备上可用。
要在 PC 上获取Google Assistant,您需要按照命令行说明进行操作,这是在 PC 上获取它的唯一方法。无论如何(Anyway),不要浪费任何时间,让我们看看如何(How)在下面列出的指南的帮助下在Windows 10上获取Google Assistant 。
如何在Windows 10上安装(Windows 10)Google 助理(Google Assistant)
确保 创建一个还原点(create a restore point) 以防万一出现问题。
先决条件:(Prerequisites:)
1.首先,您需要在您的PC上下载Python 。(download Python)
2.从链接下载 Python 3.6.4(Download Python 3.6.4),然后双击 python-3.6.4.exe 运行安装程序。
3. 勾选“ Add Python 3.6 to PATH ”,然后点击自定义安装。(Customize installation.)
4. 确保在窗口中检查了所有内容,然后单击下一步。(Next.)
5. 在下一个屏幕上,只需确保选中(checkmark)“将 Python 添加到环境变量(Add Python to environment variables)”。
6.单击安装,(Click Install,)然后等待Python在您的 PC 上安装。
7. 安装完成后,重新启动您的 PC。
8. 现在,按Windows Key + X,然后选择命令提示符(管理员)。(Command Prompt (Admin).)
9. 在 cmd 中键入以下命令并按Enter:
Python
10. 如果上述命令将返回您计算机上当前的 Python 版本,( the current Python version on your computer,)那么您已经成功地在您的 PC 上安装了Python 。
第 1 步:(Step 1: )配置 Google 助理 API(Configure the Google Assistant API)
通过此步骤,您可以在Windows、Mac或Linux上使用(Linux)Google Assistant。只需(Just)在每个操作系统上安装 python 即可正确配置Google Assistant API。
1. 首先,进入Google Cloud Platform Console 网站(Google Cloud Platform Console website),点击CREATE PROJECT。
注意:(Note:)您可能需要使用您的Google帐户登录。
2.适当地命名您的项目,(Name your project appropriately,)然后单击创建。(Create.)
注意:(Note:) 确保(Make)记下项目 ID,在我们的例子中,它的windows10-201802。
3.等到(Wait)你的新项目创建完成(你会注意到右上角的铃铛图标上有一个旋转的圆圈(you will notice a spinning circle on the bell icon at the top right corner))。
4. 完成此过程后,单击铃铛图标( click on the bell icon)并选择您的项目。
5. 在项目页面的左侧菜单中,单击APIs & Services,然后选择Library。
6. 在图书馆页面,在搜索控制台中搜索“ Google Assistant ”(不带引号)。(Google Assistant)
7.点击 Google Assistant API(Click on Google Assistant API)搜索结果,然后点击启用。(Enable.)
8. 现在,从左侧菜单中,单击凭据,然后单击“创建(Create) 凭据(credentials)”,然后选择帮助我选择。(Help me choose.)
9. 在“ Add credentials to your project(Add credentials to your project) ”屏幕上选择以下信息:
Question: Which API are you using? Answer: Google Assistant API Question: Where will you be calling the API form? Answer: Other UI (e.g. Windows, CLI tool) Question: What data will you be accessing? Answer: User data
10. 回答完以上所有问题后,点击“我需要什么凭证?(What credentials do I need?)“。
11. 选择设置同意屏幕(Set up consent screen)并选择应用程序(Application)类型为内部(Internal)。在应用程序(Application)名称中输入项目名称,然后单击保存。(Save.)
12. 再次返回“将凭据添加到您的项目”屏幕,然后单击创建凭据(Create Credentials)并选择帮助我选择(Help me choose)。按照与第 9 步相同的说明继续操作。
13. 接下来,输入客户端 ID 的名称(type the name of the Client ID)(随便命名)以创建 OAuth 2.0 客户端 ID(create OAuth 2.0 client ID),然后单击创建客户端 ID (Create Client ID )按钮。
14. 单击完成,然后打开一个新选项卡并从此(Done,)链接(this link)转到活动(Activity)控件。
15.确保所有开关都已打开(Make sure all the toggles are turned ON),然后返回凭据选项卡。(Credentials tab.)
16.单击屏幕最右侧的下载图标(Click the download icon)以下载凭据。(download the credentials.)
注意:(Note:)将凭证文件保存在易于访问的位置。
第 2 步:(Step 2: )安装 Google Assistant 示例 Python 项目(Install Google Assistant Sample Python Project)
1. 按Windows Key + X,然后选择命令提示符(管理员)。(Command Prompt (Admin).)
2. 在 cmd 中输入(Enter)以下命令并在每个命令后按 Enter:
py -m pip install google-assistant-sdk[samples]
3. 上述命令执行完毕后,键入以下命令并按Enter 键(Enter)。
pip install --upgrade google-auth-oauthlib[tool]
4. 导航到您之前下载的JSON文件位置并右键单击它并选择 Properties(right-click on it and select Properties)。在名称字段中,复制文件名(copy the file name)并将其粘贴到记事本中。
5. 现在输入以下命令,但确保将“ path/to/client_secret_XXXXX.json ”替换为您在上面复制的JSON文件的实际路径:
google-oauthlib-tool --client-secrets path/to/client_secret_XXXXX.json --scope https://www.googleapis.com/auth/assistant-sdk-prototype --save --headless
6. 上述命令完成处理后,您将获得一个 URL 作为输出。(you get a URL as the output. )确保复制此 URL,因为您将在下一步中需要它。 (copy this URL as you will require it in the next step. )
注意:(Note:)暂时不要关闭命令提示符(Command Prompt)。
7. 打开您的 Web 浏览器并导航到此 URL(navigate to this URL) ,然后选择您用于 配置 Google Assistant API(configure the Google Assistant API.)的同一Google 帐户。(Google account)
8. 确保单击允许( Allow)授予运行Google 助理(Google Assitant)所需的权限。
9. 在下一页,您将看到一些代码,这些代码将成为您客户的访问令牌。( client’s Access Token.)
10. 现在切换回命令(Command)提示符并复制此代码并将其粘贴到 cmd 中。如果一切顺利,您会看到一个输出,说明您的凭据已保存。(your credentials have been saved.)
第 3 步:(Step 3: )在 Windows 10 PC 上测试 Google Assistant(Testing Google Assistant on Windows 10 PC)
1. 按Windows Key + X,然后选择命令提示符(管理员)。(Command Prompt (Admin).)
2. 现在我们需要测试Google Assistant是否可以正常访问您的麦克风。在 cmd 中键入以下命令并按Enter,这将开始 5 秒的录音:
py -m googlesamples.assistant.grpc.audio_helpers
3.如果你能成功听到5秒的录音回来,(successfully hear the 5-second audio recording back,)你可以进入下一步。
注意:(Note:)您也可以使用以下命令作为替代:
googlesamples-assistant-audiotest --record-time 10
4. 您需要先注册您的设备(Device),然后才能开始在Windows 10 PC上使用Google Assistant 。
5. 接下来,键入以下命令并按 Enter:
cd C:\GoogleAssistant
6. 现在键入以下命令,但将“ project-id ”替换为您在第一步中创建的实际项目 id。在我们的例子中,它是windows10-201802。
googlesamples-assistant-devicetool --project-id register-model --manufacturer "Assistant SDK developer" --product-name "Assistant SDK light" --type LIGHT --model "GA4W"
7. 接下来,要启用Google Assistant Push to Talk ( PTT ) 功能,请输入以下命令,但请确保将“ project-id ”替换为实际项目 ID:
py -m googlesamples.assistant.grpc.pushtotalk --device-model-id “GA4W” --project-id
注意:(Note:) Google Assistant API支持(Google Assistant API)Google Assistant在Android和Google Home上支持的所有命令。
您已在 Windows 10 PC 上成功安装和配置Google Assistant 。输入上述命令后,只需按Enter,您就可以直接向Google Assistant提出任何问题,而无需说出“OK,Google”命令。
受到推崇的:(Recommended:)
- 从 Windows 10 完全卸载 Norton(Completely uninstall Norton from Windows 10)
- 如何在 Windows 10 上设置远程桌面连接(How to Setup Remote Desktop Connection on Windows 10)
- 连接鼠标时自动禁用触摸板(Automatically disable Touchpad when Mouse is connected)
- 如何从 Windows 10 完全卸载 McAfee(How to completely uninstall McAfee from Windows 10)
我们希望本指南对您有所帮助,并且您能够在 Windows 10 PC 上安装 Google Assistant,(install Google Assistant on Windows 10 PC)而不会出现任何问题。但是,如果您对本指南仍有任何疑问,请随时在评论部分提出。
Related posts
如何在 Windows 10 上使用 Google 助理
Windows 10中Sync Multiple Google Drive Accounts
修复 Google Chrome 在 Windows 10 上自动打开
禁用Windows 10中的夹夹Zoom Feature
在Windows 10中创建Full System Image Backup [终极指南]
Windows 10中的Create Control Panel All Tasks Shortcut
如何在Windows 10上运行JAR Files
强制清除Windows 10中的Print Queue
Mouse在Windows 10连接时禁用Touchpad
Allow or Prevent Devices在Windows 10中唤醒Computer
Fix Calculator不在Windows 10工作
在Windows 10中禁用User Account Control(UAC)
如何在Windows 10启用有源Directory
3 Ways至Add Album Art至Z86152至Windows 10中的MP3
Windows 10缺少Fix VCRUNTIME140.dll
Windows 10 User Find Security Identifier(SID)
在Windows 10中启用或禁用内置Administrator Account
为什么你需要在Windows 10中禁用Fast Startup?
3 Ways在Windows 10中杀死A Process
在Windows 10中添加Printer [指南]