坚持使用 Bower 安装依赖项(基础新)
Stuck on installing dependencies with bower (foundation new)
我按照本指南在我的 Windows 8.1 PC 上安装了 Foundation。
http://foundation.zurb.com/forum/posts/11597-how-to-install-grunt-and-libsass-on-windows
当我到达第 16 步时,我的 cmd 提示卡在 "Installing dependencies with bower..."。
我以前在我的电脑上做过基础工作,但最近我不得不重新格式化它。谢谢你的帮助。
你好,我遇到了同样的问题。尝试清除 Bower 缓存它解决了我的问题
bower cache clean
bower cache list
希望对你有帮助
我也遇到了同样的问题。我在 windows 8.1 x64。尝试过:清理 bower 缓存,将 bower 添加到环境路径,重新安装 node.js。我没有找到解决方案,但你可以试试这个:
- Download this starter compass project and unzip it
- 将文件复制到您的项目文件夹。
- 在 CMD 中转到您的项目目录并 运行 "bower install" 安装最新版本的 Foundation。
- 下一个 运行 "compass watch".
- 现在开始index.html
我花了很多时间试图解决这个问题...我找到了解决方案! :) 我认为这是 node.js 和 npm 版本之间的问题。我注意到,当我有最新的 node.js 时,当我在 CMD npm install -g bower
中启动时 npm ERR!
没有问题,然后 运行 foundation new project_name --libsass
我注意到 "Installing dependencies with bower..." 过程继续......
然而,当我安装 node.js 版本 0.10.x 并创建一个新的 Foundation 项目时,"Installing dependencies with bower..." 工作正常但我有一个 npm ERR!
(和更早版本输入 "npm install -g bower").
结论:
- 如果您有 node.js 版本 > 0。10.x 卸载它并重新启动计算机。
- 安装node.js版本0。10.x(我有node-v0.10.9-x86)并重新启动计算机。
- 将 npm 升级到最新版本。很好的教程如何在这里做:
https://github.com/npm/npm/wiki/Troubleshooting 在 "Upgrading on Windows" 部分并重新启动计算机。
- 检查您的 npm 版本:打开 CMD 并输入 "npm -v",如果您看到 npm 2.5.1 或更高版本(将来),则您已成功更新 npm...
- 按照以下步骤安装其他所有内容:
http://foundation.zurb.com/forum/posts/11597-how-to-install-grunt-and-libsass-on-windows
希望对您有所帮助!
阿卡迪
P.S。
我有 Windows 64 位,我安装了 rubyinstaller-1.9.3-p551 和最新的 Git 版本...
我遇到了同样的问题,并执行了 Ctrl+C
以停止使用 Bower 安装依赖项。然后在我的网站所在的目录中执行 bower update
命令,它完成了所有正确文件的添加。
我全局重新安装了 Bower,它成功了。
npm install -g bower
我知道这是一个老问题,但我今天遇到了同样的问题,使用 bower 安装 angular sanitize,我想补充我的两分钱,以防有人再次遇到这个问题。
不确定这是否是最佳解决方案,但它有效:我添加了强制标志
bower install --force
之前也可以试试:
bower cache clean
bower cache list
我还删除了 bower 之前引入的库
我按照本指南在我的 Windows 8.1 PC 上安装了 Foundation。
http://foundation.zurb.com/forum/posts/11597-how-to-install-grunt-and-libsass-on-windows
当我到达第 16 步时,我的 cmd 提示卡在 "Installing dependencies with bower..."。
我以前在我的电脑上做过基础工作,但最近我不得不重新格式化它。谢谢你的帮助。
你好,我遇到了同样的问题。尝试清除 Bower 缓存它解决了我的问题
bower cache clean
bower cache list
希望对你有帮助
我也遇到了同样的问题。我在 windows 8.1 x64。尝试过:清理 bower 缓存,将 bower 添加到环境路径,重新安装 node.js。我没有找到解决方案,但你可以试试这个:
- Download this starter compass project and unzip it
- 将文件复制到您的项目文件夹。
- 在 CMD 中转到您的项目目录并 运行 "bower install" 安装最新版本的 Foundation。
- 下一个 运行 "compass watch".
- 现在开始index.html
我花了很多时间试图解决这个问题...我找到了解决方案! :) 我认为这是 node.js 和 npm 版本之间的问题。我注意到,当我有最新的 node.js 时,当我在 CMD npm install -g bower
中启动时 npm ERR!
没有问题,然后 运行 foundation new project_name --libsass
我注意到 "Installing dependencies with bower..." 过程继续......
然而,当我安装 node.js 版本 0.10.x 并创建一个新的 Foundation 项目时,"Installing dependencies with bower..." 工作正常但我有一个 npm ERR!
(和更早版本输入 "npm install -g bower").
结论:
- 如果您有 node.js 版本 > 0。10.x 卸载它并重新启动计算机。
- 安装node.js版本0。10.x(我有node-v0.10.9-x86)并重新启动计算机。
- 将 npm 升级到最新版本。很好的教程如何在这里做: https://github.com/npm/npm/wiki/Troubleshooting 在 "Upgrading on Windows" 部分并重新启动计算机。
- 检查您的 npm 版本:打开 CMD 并输入 "npm -v",如果您看到 npm 2.5.1 或更高版本(将来),则您已成功更新 npm...
- 按照以下步骤安装其他所有内容: http://foundation.zurb.com/forum/posts/11597-how-to-install-grunt-and-libsass-on-windows
希望对您有所帮助! 阿卡迪
P.S。 我有 Windows 64 位,我安装了 rubyinstaller-1.9.3-p551 和最新的 Git 版本...
我遇到了同样的问题,并执行了 Ctrl+C
以停止使用 Bower 安装依赖项。然后在我的网站所在的目录中执行 bower update
命令,它完成了所有正确文件的添加。
我全局重新安装了 Bower,它成功了。
npm install -g bower
我知道这是一个老问题,但我今天遇到了同样的问题,使用 bower 安装 angular sanitize,我想补充我的两分钱,以防有人再次遇到这个问题。
不确定这是否是最佳解决方案,但它有效:我添加了强制标志
bower install --force
之前也可以试试:
bower cache clean
bower cache list
我还删除了 bower 之前引入的库