我正在创建一个新的Slack botkit应用程序,但在安装过程中遇到了问题。
Node.js和node-dependency正确安装在我的Windows 7系统上。
https://github.com/howdyai/botkit
然后第4步,我运行此命令
c:\bot\botkit > token=REPLACE_THIS_WITH_YOUR_TOKEN node bot.js
(I replaced with my api key.)
在我的命令提示符中,它说:
'token' is not recognized as an internal or external command, operable program or batch file.
我认为这适用于Linux或Mac命令,那么如何在Windows上操作呢?
答案 0 :(得分:5)
我找到了解决方案:
c:\bot\botkit > set token=REPLACE_THIS_WITH_YOUR_TOKEN
然后:
c:\bot\botkit > node bot.js
似乎有效。
不需要尖括号。