网站搭建debug记录
做的比较好的学术主页/fork来源
- 学术主页mark
- fork来源
- zhoulvbang/zhoulvbang.github.io: 超级懒的小周的博客
- 最开始仿照的repo:Structure - Minimal Mistakes (mmistakes.github.io),里面有复杂版本的详细结构
debug汇总
- bundler install卡住
- solution:Ruby gem,bundler默认源替换为国内镜像,可解决bundler install卡住等问题 - Geuni’s Blog
gem sources --add https://mirrors.tuna.tsinghua.edu.cn/rubygems/ --remove https://rubygems.org/
bundle config mirror.https://rubygems.org https://gems.ruby-china.com
- Resolving TZInfo::DataSourceNotFound Errors
- 问题:windows环境下using a 64-bit version of Ruby on Windows,控制台中尝试开启
bundle exec jekyll serve
失败 - 主要solution:Resolving TZInfo::DataSourceNotFound Errors · tzinfo/tzinfo Wiki (github.com)
- 在Gemfile文件(生成在当前目录下,也即网页文件夹所在的目录下)中添加一行`gem ‘tzinfo-data’
- 等价于控制台中
bundle add tzinfo-data
- 等价于控制台中
- 随后在控制台中
bundle update
(会很慢,可以试一下bundle install)
- 在Gemfile文件(生成在当前目录下,也即网页文件夹所在的目录下)中添加一行`gem ‘tzinfo-data’
- 辅助solution:Jekyll博客系统的TZINFO依赖问题 - 知乎 (zhihu.com)
- 问题:windows环境下using a 64-bit version of Ruby on Windows,控制台中尝试开启
- 37:in ‘require’: cannot load such file – webrick (LoadError)
- 问题:windows环境下using a 64-bit version of Ruby on Windows,控制台中尝试开启bundle exec jekyll serve失败
- 主要solution:ruby on rails - cannot load such file – webrick/httputils - Stack Overflow
- 控制台中
bundle add webrick
- 控制台中