Errors when buildding blog with hexo

Hexo 安装提交过程中错误以及解决方法

1、错误提示:

1
2
ERROR Process failed: _posts/Tensorflow中dynamic-rnn和row-rnn的区别.md
YAMLException: can not read a block mapping entry; a multiline key may not be an implicit key at line 9, column 1:

错误原因:原因是我在makrdown文件中的site那块添加categories的时候,后面的冒号使用的是中文状态下的输入。
解决方法:中文冒号改写成英文冒号

1
2
3
4
5
6
7
8
9
10
11

---
title: Tensorflow中dynamic_rnn和row_rnn的区别
date: 2017-09-04 08:58:38
catalog: true
tags:
- Tensorflow
- Tensorflow基础知识
categories:
- Tensorflow基础知识
---

注意:注意中英文标点符号的问题,还有就是拼写错误,冒号后面的空格等等格式错误,有的时候不注意很容易写错。

2、错误提示

1
2
fatal: unable to access 'https://github.com/STHSF/sthsf.github.io/': Could not resolve host: github.com
FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html

错误原因:可能是网络原因,导致无法连接到github的服务器。