最近在研究node.js,在安装npm的时候发现了几个报错,瞬间蒙圈,查找文献基本解决(文献好少呀~ -.-) 一.报错:“can not open path/path/package.json” 原因:在安装npm的时候,终端会调取一个叫package.json的文件,里边包含了 name,version,dependencies 等等属性信息,当终端找不到该文件的时候也就不能完成安装操作. 解决方法:在对应的path下边创建该文件,并且把需要的模块写在dependencies…
问题: 项目使用django开发,返回的数据中有时间字段,当json.dumps()时提示:datetime.datetime is not JSON serializable 解决: import json from datetime import date, datetime class DateEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, datetime): return obj.strftim…
执行 npm install socket.io安装时报错: [root@WEB node_modules]# npm install socket.ionpm WARN enoent ENOENT: no such file or directory, open '/usr/local/nodejs/bin/package.json' npm WARN bin No description npm WARN bin No repository field. npm WARN bin No RE…
在运行如下命令时, 遇到了问题: npm install --registry=https://registry.npm.taobao.org npm run dev 错误提示: 解决办法: 生成一个package.json文件 C:\Users\James>npm initThis utility will walk you through creating a package.json file.It only covers the most common items, and tries…
npm install 报错:warning no description; no repository field 开始以为必须npm init,npm init在git bash(win7)里,还会卡住.在cmd中,不会卡. 把这两个属性加到package.json中,在npm install 即可.…
转自树之名原文npm WARN saveError ENOENT: no such file or directory解决 我是在安装sequelize时出错的.提示的错误没有保存,类似于参考的文章中说的安装vue时的报错. C:\Users\lxz>npm uninstall vueWcsp npm WARN saveError ENOENT: no such file or directory, open 'C:\Users\lxz\package.json' npm WARN enoent…