在执行 npm 运行监视时安装乳胶草图插件时出错



我在安装乳胶草图插件时遇到错误。我没有完整的想法如何安装这个插件,但我的论文需要它,因为我必须制作一些也需要编写数学方程式的图表。所以基本上,我有节点包管理器

amar@admin:~$ npm -v
5.4.2

我使用git clone将乳胶草图插件存储库克隆到草图插件文件夹中,即~/Library/Application Support/com.bohemiancoding.sketch3/Plugins

但是当我执行npm run watch时,出现以下错误

   amar@admin:~$ npm run watch
    npm ERR! path /Users/amar/package.json
    npm ERR! code ENOENT
    npm ERR! errno -2
    npm ERR! syscall open
    npm ERR! enoent ENOENT: no such file or directory, open '/Users/amar/package.json'
    npm ERR! enoent This is related to npm not being able to find a file.
    npm ERR! enoent 
    npm ERR! A complete log of this run can be found in:
    npm ERR!     /Users/amar/.npm/_logs/2017-11-08T04_14_49_190Z-debug.log

错误消息显示找不到/Users/amar/package.json。看起来您在/Users/amar 文件夹中运行了 npm 命令。请在克隆项目的文件夹中运行,以便 npm 可以找到 package.json

相关内容

  • 没有找到相关文章

最新更新