binary-husky commited on
Commit
2fa52f7
1 Parent(s): 00e7fbd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -11
README.md CHANGED
@@ -145,17 +145,13 @@ python main.py
145
  1. 仅ChatGPT(推荐大多数人选择)
146
 
147
  ``` sh
148
- # 下载项目
149
- git clone https://github.com/binary-husky/chatgpt_academic.git
150
- cd chatgpt_academic
151
- # 配置 “Proxy”, “API_KEY” 以及 “WEB_PORT” (例如50923) 等
152
- 用任意文本编辑器编辑 config.py
153
- # 安装
154
- docker build -t gpt-academic .
155
- #(最后一步-选择1)在Linux环境下,用`--net=host`更方便快捷
156
- docker run --rm -it --net=host gpt-academic
157
- #(最后一步-选择2)在macOS/windows环境下,只能用-p选项将容器上的端口(例如50923)暴露给主机上的端口
158
- docker run --rm -it -p 50923:50923 gpt-academic
159
  ```
160
 
161
  2. ChatGPT+ChatGLM+MOSS(需要熟悉Docker)
 
145
  1. 仅ChatGPT(推荐大多数人选择)
146
 
147
  ``` sh
148
+ git clone https://github.com/binary-husky/chatgpt_academic.git # 下载项目
149
+ cd chatgpt_academic # 进入路径
150
+ nano config.py # 用任意文本编辑器编辑config.py, 配置 “Proxy”, “API_KEY” 以及 “WEB_PORT” (例如50923) 等
151
+ docker build -t gpt-academic . # 安装
152
+
153
+ docker run --rm -it --net=host gpt-academic #(最后一步-选择1)在Linux环境下,用`--net=host`更方便快捷
154
+ docker run --rm -it -p 50923:50923 gpt-academic #(最后一步-选择2)在macOS/windows环境下,只能用-p选项将容器上的端口(例如50923)暴露给主机上的端口
 
 
 
 
155
  ```
156
 
157
  2. ChatGPT+ChatGLM+MOSS(需要熟悉Docker)