1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| curl -fsSL https://deb.nodesource.com/setup_24.x | sudo -E bash - sudo apt install nodejs -y node -v npm -v
sudo npm install -g hexo-cli mkdir hexoblog cd hexoblog hexo init
npm install hexo-renderer-pug; npm install hexo-deployer-git; npm install hexo-generator-baidu-sitemap; npm install hexo-generator-sitemap; npm install hexo-math; npm install hexo-wordcount; npm install hexo-blog-encrypt npm install hexo-util --save npm install hexo-algoliasearch --save
git clone https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly
|