gpt4 book ai didi

node.js - 第一次编码,很困惑 - Echo

转载 作者:太空宇宙 更新时间:2023-11-04 02:11:30 25 4
gpt4 key购买 nike

对令人难以置信的无知表示歉意。第一次查看或尝试以任何形式进行编码,自然会有点困惑和不知所措。

试图保持 super 基本,我试图通过这篇文章为 Amazon Echo 构建一些基本的东西 - https://developer.amazon.com/blogs/post/Tx3DVGG0K0TPUGQ/updated-alexa-skills-kit-fact-template-step-by-step-guide-to-build-a-fact-skill

已进行步骤 2.3

下载源代码[完成]、安装 Node 并更新 npm 后,您就可以安装 ASK-SDK。根据您的技能,将其安装在与 src/index.js 文件相同的目录中。将目录更改为您技能的 src 目录,然后在命令行中输入: npm install --save alexa-sdk

我已将 SDK 移至与源代码相同的文件夹中 - 在下载文件夹中。对于将目录更改为与我的技能相同的目录感到困惑。据我所知,还没有技能,所以不知道将其移到哪里。

当输入 npm install --save alexa-sdk

返回npm WARN enoent ENOENT:没有这样的文件或目录,打开 '/Users/OwenLee/package.json'npm WARN OwenLee 无描述npm WARN OwenLee 没有存储库字段。npm 警告 OwenLee 没有自述文件数据npm 警告 OwenLee 没有许可证字段。

在 Mac 上工作,所以不知道如何/在哪里访问它,但假设这是我需要将文件移动到的位置?

非常抱歉宝宝的基础知识。只是试图至少迈出一步,因为知道需要学习这些东西,但我读到的所有内容似乎都假设我已经掌握了编码的工作知识:S

任何帮助都会很棒 - Inc.关于之后的步骤的任何建议,您可能会看到我会绊倒

谢谢!!

toastr 121

最佳答案

至此目录/Users/OwenLee/这将是您在 Mac 上的主文件夹。根/您可以通过 Finder 通过单击 Macintosh HD 访问您的 HDD。 (或您为主硬盘命名的任何名称)在侧栏中。如果您打开一个新的终端窗口,它将是终端启动的目录。您应该能够通过获取文件 packages.json 来解决您的问题。 ,它应该位于您下载 SDK 的位置,并将其放在您的主文件夹中,然后重新运行该命令。

如果您真的很投入,请不要让我改变主意,但如果您完全没有编程经验,我建议您从比 Java 或 Javascript 简单一点的东西开始。对于初学者来说,面向对象的语言可能非常复杂且难以掌握(我个人多年来一直在编写 C 等本地语言,现在才开始了解 Java 的工作原理。)。

如果这是一个选项,我建议从您的 Mac 内置支持的语言开始。也许从 Bash 脚本或 Apple Script 开始,制作基本脚本来完成您认为在终端中手动完成的繁琐的事情,或者通过制作一些基本程序来在运行时显示文本,或者要求用户输入一些内容,然后回说他们输入的内容,从而了解 C 和 C++ 等处理器 native 语言的基础知识。最后,由于您使用的是 Mac,您可以在应用程序商店中免费获取 Xcode,它会自行配置,您可以使用它来了解 macOS 如何处理窗口,也许可以从制作一个带有几个按钮的基本程序窗口开始,这些按钮在单击时执行不同的操作。

如果您对我的建议感兴趣,您可以在这里找到一些有关 bash 脚本的信息:https://linuxconfig.org/bash-scripting-tutorial该教程假设读者之前不了解 Bash,并且大多数命令在 Mac 终端应用程序内置的 Bash 版本中应该可以正常工作。

如果您对 C++ 更感兴趣,这是我用来学习编写 C++ 并了解 native 语言如何工作的网站:http://www.cplusplus.com/doc/tutorial/

最后,这是一个名为“Hello World”的基本 C++ 程序,编写这个程序并学习它的每个部分是如何工作的,这在某种程度上是 C/C++ 学生的入门仪式:

//HelloWorld.cpp the double slash tells the compiler and user that everything after it on this line is a comment, not code//

#include <iostream> //The octothorp '#' lets the compiler know it needs to use the library named inside the pointed brackets '</>' when it builds the programme. 'iostream' stands for In-Out Stream, and handles basic text, and basic processor commands//

using namespace std; //This line tells the compiler that any line that says to show text or ask the user to type something should use regular text and not a special format//

int main() //'int' stands for integer, any time you make a variable that contains only an integer you should put this in front of it's name, and 'main' is the name of the integer. The empty parentheses tells the compiler that this is a function, rather than a number//

{ //The open curly bracket '{' tells the compiler where the function starts

cout<<"Hello World"; //'cout' stands for 'character out' and is for showing basic text in the terminal window. The double pointy 'out' brackets '<<' tells the compiler that the text should be sent out of the programme rather than loaded into a variable, the text inside the quotes is what will be shown on the screen, and the semi colon tells the compiler where the command ends, it has to be put at the end of any command that is inside of a function//

return 0 //The command 'return' is for telling the compiler whether or not an error has occurred, 0 means the programme ran fine, 1 means something went wrong, either way the programme closes when it runs the command 'return'//

} //the closed curly bracket tells the compiler where the function ends//

祝您编程顺利,如果您有任何与此主题无关​​的问题,请随时私信我,或创建一个新问题并在其中标记我,以便我收到通知。

关于node.js - 第一次编码,很困惑 - Echo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41885281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com