在 Ubuntu 18.04 上安装 nodemon 时出错
error when installing nodemon on Ubuntu 18.04
当我用
安装nodemon时
sudo npm i --save-dev nodemon
我收到以下错误消息:
npm ERR! path /home/dominikpatera/Dropbox/Projekty/Fytwa/server/node_modules/npm/node_modules/abbrev
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall rename
npm ERR! enoent ENOENT: no such file or directory, rename '/home/dominikpatera/Dropbox/Projekty/Fytwa/server/node_modules/npm/node_modules/abbrev' -> '/home/dominikpatera/Dropbox/Projekty/Fytwa/server/node_modules/npm/node_modules/.abbrev.DELETE'
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! /home/dominikpatera/.npm/_logs/2018-07-11T09_45_21_545Z-debug.log
你能帮我解决一下吗?
打开终端并输入:
sudo npm install -g nodemon
然后
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
您将得到类似于以下的输出:
fs.inotify.max_user_watches=524288
fs.inotify.max_user_watches = 524288
之后您的 nodemon 将完美运行。
首先确保在您的终端上,您正在处理正确的项目。您可以通过输入 ls
进行检查,然后按回车键。
然后下命令安装nodemon。从nodemon的官网,我们发现,我们要写npm install -g nodemon
但是如果你在这里遇到问题,那么写这个-
sudo npm install -g nodemon
当我用
安装nodemon时sudo npm i --save-dev nodemon
我收到以下错误消息:
npm ERR! path /home/dominikpatera/Dropbox/Projekty/Fytwa/server/node_modules/npm/node_modules/abbrev
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall rename
npm ERR! enoent ENOENT: no such file or directory, rename '/home/dominikpatera/Dropbox/Projekty/Fytwa/server/node_modules/npm/node_modules/abbrev' -> '/home/dominikpatera/Dropbox/Projekty/Fytwa/server/node_modules/npm/node_modules/.abbrev.DELETE'
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! /home/dominikpatera/.npm/_logs/2018-07-11T09_45_21_545Z-debug.log
你能帮我解决一下吗?
打开终端并输入:
sudo npm install -g nodemon
然后
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
您将得到类似于以下的输出:
fs.inotify.max_user_watches=524288
fs.inotify.max_user_watches = 524288
之后您的 nodemon 将完美运行。
首先确保在您的终端上,您正在处理正确的项目。您可以通过输入 ls
进行检查,然后按回车键。
然后下命令安装nodemon。从nodemon的官网,我们发现,我们要写npm install -g nodemon
但是如果你在这里遇到问题,那么写这个-
sudo npm install -g nodemon