From 056eaf0f403a93d0f49f5f09553b7664d79bc17f Mon Sep 17 00:00:00 2001 From: Mufanc <47652878+Mufanc@users.noreply.github.com> Date: Tue, 23 Nov 2021 13:05:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 25 +++++++++++++++++++++++++ requirements.txt | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e9a4ad..b032a71 100644 --- a/README.md +++ b/README.md @@ -39,10 +39,35 @@ ### 使用方法 +#### 下载源代码 + +  在合适的位置打开终端,然后执行: + +```shell +git clone https://github.com/Mufanc/iSmartAuto2.git +cd iSmartAuto2 +``` + +  如果你是直接下载的源码压缩包,那么直接在解压后的文件夹内打开终端 + +#### 安装依赖 + +  在刚刚打开的终端中执行: + +```shell +pip install -r requirements.txt +``` + +  感谢 [@cyp0633](https://github.com/cyp0633) 的 [提醒](https://github.com/Mufanc/iSmartAuto2/pull/8),现已将 `requirements.txt` 中的 websockets 版本降级为 8.1 + +#### 配置 iSmart 客户端 +   修改 iSmart 的启动快捷方式,增加参数 `--remote-debugging-port=9222`(如下图),**然后启动 iSmart 客户端并保持登录** ![](images/edit-lnk.png) +#### 配置运行参数 +   修改 `configs.yml` 中的账号和密码,保证与 iSmart 客户端中登录的账号一致,然后根据需要调整下方参数。在终端中执行 `py main.py -h` 可以查看更多帮助信息,这里列举几个常用命令 * 列出所有课程和书籍的详细信息 diff --git a/requirements.txt b/requirements.txt index 5f94ee5..327758a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,5 +3,5 @@ opencv-python~=4.5.3.56 numpy~=1.21.2 httpx~=0.19.0 beautifulsoup4~=4.10.0 -websockets~=8.1 +websockets==8.1 PyYAML~=5.4.1 \ No newline at end of file