0

我在安装latex-sketch-plugin时出错。我不知道如何安装这个插件,但我的论文需要它,因为我必须制作一些需要编写数学方程式的图表。所以基本上,我有节点包管理器

amar@admin:~$ npm -v
5.4.2

我将latex-sketch-plugin repo克隆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
4

1 回答 1

1

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

于 2017-11-08T04:34:56.543 回答