从 Github 克隆后无法 运行 React App
Can not run React App after cloning it from Github
我真的需要你的帮助。我将不胜感激。
我克隆了这个项目:https://github.com/iearn-finance/iearn-finance,
我想要一个这样的前端网站:https://yearn.finance/.
但我不能运行它本地。我试过 "npm install"
然后 "npm start"
,仔细检查 package.json 但它仍然不起作用并给我这个错误:
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path D:\iearn-finance-develop\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'D:\iearn-finance-develop\package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
1- 你确定路径 D:\iearn-finance-develop 是正确的吗?
不是 D:\iearn-finance ??
2-你有没有:
删除 package-lock.json 和 node_modules 然后 npm install
3-检查文件系统是否存在文件。
试试这些:
npm 缓存清理
你应该初始化包:
npm 初始化
然后安装你的包
尝试使用 npm cache clean
清理缓存
然后用 npm init
初始化
之后,安装您的软件包。
它对我有用。
我真的需要你的帮助。我将不胜感激。
我克隆了这个项目:https://github.com/iearn-finance/iearn-finance, 我想要一个这样的前端网站:https://yearn.finance/.
但我不能运行它本地。我试过 "npm install"
然后 "npm start"
,仔细检查 package.json 但它仍然不起作用并给我这个错误:
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path D:\iearn-finance-develop\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'D:\iearn-finance-develop\package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
1- 你确定路径 D:\iearn-finance-develop 是正确的吗? 不是 D:\iearn-finance ??
2-你有没有: 删除 package-lock.json 和 node_modules 然后 npm install
3-检查文件系统是否存在文件。
试试这些:
npm 缓存清理
你应该初始化包:
npm 初始化
然后安装你的包
尝试使用 npm cache clean
清理缓存
然后用 npm init
之后,安装您的软件包。
它对我有用。