We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 064624f commit 19a4004Copy full SHA for 19a4004
README.md
@@ -4,6 +4,47 @@
4
5
希望各位 Python 爱好者能参与其中,一起探索 Python 魔法背后的奥秘!
6
7
+# 使用
8
+
9
+您可以直接访问 [在线版](https://github.com/flaggo/python3-source-code-analysis),或者根据一下步骤访问本地版。
10
11
+## 前置条件
12
13
+您的系统上需要安装好 node。
14
15
+## 使用 make 命令
16
17
+若您可使用 make 命令,简单执行如下命令进行初始化:
18
19
+```console
20
+make init
21
+```
22
23
+执行如下命令运行服务端:
24
25
26
+make run
27
28
29
+## 使用 gitbook 命令
30
31
+若您不能使用 make 命令,或想直接使用 gitbook 命令,执行如下命令进行初始化:
32
33
34
+npm i -g gitbook-cli #可能需要sudo
35
+gitbook install
36
37
38
39
40
41
+gitbook serve
42
43
44
+## 访问
45
46
+直接访问 http://localhost:4000 即可查看本书内容。
47
48
# 计划
49
50
大体按照《Python 源码剖析》中的目录结构进行编写。依次介绍 Python 源码基本信息、内建对象和虚拟机。
0 commit comments