Setting up Blog on github.io
This article shares the process of setting up blog website on github.io.
Create a new github and git clone to local computer
1 |
|
Install packages
1 |
|
Remark: $ conda install -c conda-forge ruby=3.3.3
and checking, 1
2
3
4
5
6
7
8
9
10
11
12which jekyll
which ruby
ln -s /xxx/anaconda3/envs/jekyll/bin/ruby /xxx/anaconda3/envs/jekyll/share/rubygems/bin/ruby
bundle init
bundle install
bundle update --bundler
bundle add jekyll
gem "jekyll"
gem "jekyll-paginate"
bundle update
bundle exec jekyll -v
vim Gemfile + gem "jekyll-paginate"
Run on local computer
1 |
|
iMac is 1
2
3
4
5
6Run in verbose mode to see all warnings.
done in 2.362 seconds.
Auto-regeneration: enabled for '/Users/wpsze/Documents/git-local/waipangsze.github.io'
Server address: http://127.0.0.1:4000
Server running... press ctrl-c to stop.
[2022-06-01 13:15:18] ERROR `/js/pageContent.js' not found.
Open a browser with the ip address in above output
Upload to github
1 |
|
Errors
- jekyll/share/rubygems/bin/ruby: No such file or directory
- Error installing jekyll: Failed to build gem native extension
- cannot load such file – jekyll-paginate
- Could not locate Gemfile (bundle init)
- jekyll is not currently included in the bundle, perhaps you meant to add it to your Gemfile (Edit Gemfile, + gem "jekyll", "~> 4.3"
- make: /usr/bin/mkdir: Command not found ==> in .zshrc, add source ~/.bashrc, and sudo ln -s /bin/mkdir /usr/bin/mkdir
Reference: 1. Setting up a blog site with jekyll using conda 2. TeXt Theme 3. _posts 4. gaohaoyang.github.io) 5. Welcome to HyG's Blog! 这里记录着我的前端学习之路