我正在努力完成a tutorial to set up Twitter Bootstrap。
它提供了一些克隆Twitter Bootstrap的说明,如此,
$ git clone https://github.com/twitter/bootstrap.git
然后,按照说明,我做了
$ cp bootstrap/bootstrap.css path/to/app/assets/stylesheets/.
但计算机回复了
cp: bootstrap/bootstrap.css: No such file or directory
我查看了'bootstrap'目录并看到了这个
LICENSE
Makefile
README.md
docs
img
js
less
package.json
我应该做什么而不是
$ cp bootstrap/bootstrap.css path/to/app/assets/stylesheets/.
答案 0 :(得分:1)
当您使用的教程编写时,Twitter Bootstrap位于version 1.4,而GitHub项目用于包含项目的编译版本,其中包括你期待的bootstrap.css 文件。
自version 2.0引入以来,存储库不再包含项目的编译版本,因此在您自己编译之前不包括 bootstrap.css 。您应该按照 README.md 或网站Compiling Bootstrap上提供的说明进行操作。
至少您需要 NodeJS 和 less 套餐。
如果您使用make文件,您还需要节点包 jshint ,凹陷和 uglify-js 。
您的另一种选择只是download the compiled files,而不是源代码。