File tree Expand file tree Collapse file tree 3 files changed +47
-6
lines changed Expand file tree Collapse file tree 3 files changed +47
-6
lines changed Original file line number Diff line number Diff line change
1
+ <script setup >
2
+ import { version } from ' ../../package.json'
3
+
4
+ let release_asset = ` Bili23_Downloader_v${ version} _release.tar.gz`
5
+ </script >
6
+
1
7
# 安装程序
2
8
## 下载发行版
3
9
用户可前往[ GitHub Release] ( https://github.com/ScottSloan/Bili23-Downloader/releases/ ) 页面查看历史版本。
4
10
也可以在下方列表中根据需要选择下载。
5
11
6
12
| 文件名 | 平台架构 | 下载地址 | 备注 |
7
13
| -- | -- | -- | -- |
8
- | Bili23_Downloader_v1.55_release.zip | 通用 | - | 源码版 |
14
+ | {{ release_asset }} | 通用 | - | 源码版 |
9
15
| Bili23-Downloader-1.55.0-win-amd64.zip | Windows x64 | <a href =" https://github.com/ScottSloan/Bili23-Downloader/releases/tag/v1.55.0 " target =" _blank " rel =" noreferer " >GitHub</a > <br > <a href =" https://wwx.lanzout.com/iJNAV2m5jdna " target =" _blank " rel =" noreferer " >蓝奏云</a > | 编译版,附带 FFmpeg |
10
- | Bili23-Downloader_v1.55_win_x64 .zip | Windows x64 | - | 编译版,不附带 FFmpeg |
16
+ | Bili23-Downloader_v1.55.0_win_x64 .zip | Windows x64 | - | 编译版,不附带 FFmpeg |
11
17
12
18
文件 SHA1 值校验
13
19
| 文件名 | SHA1 |
20
26
本程序完全开源免费,若是从其他渠道付费获取的,无法保证其安全性和完整性。
21
27
:::
22
28
29
+ ### 如何选择下载版本
30
+ + 未安装 Python 环境
31
+ + Windows
32
+ -> 编译版,建议选择附带 FFmpeg 的版本
33
+ + Linux & macOS
34
+ -> 源码版
35
+
36
+ + 已安装 Python 环境
37
+ -> 源码版
38
+
39
+ ### 如何校验 SHA1
40
+ 根据系统运行下方的命令:
41
+ #### Windows
42
+ ``` bash
43
+ certutil -hashfile < file> SHA1
44
+ ```
45
+
46
+ #### Linux
47
+ ``` bash
48
+ sha1sum < file>
49
+ ```
50
+
51
+ #### macOS
52
+ ``` bash
53
+ shasum -a 1 < file>
54
+ ```
55
+
23
56
## 源码版使用
24
57
### 安装 Python 环境
58
+ Python 版本需要为 3.10 及以上。
59
+
60
+ ::: details 如果还未安装 Python 环境,点击查看安装方式
25
61
从[ Python官网] ( https://www.python.org/ ) 下载系统对应的 Python,建议使用 3.11 及以上版本,最低支持 3.10 版本。
26
62
27
63
若下载速度缓慢,建议使用国内[ 华为云镜像源] ( https://mirrors.huaweicloud.com/python/ ) 下载。
34
70
``` bash
35
71
pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
36
72
```
73
+ :::
37
74
38
75
### 克隆仓库
39
- 若已安装 git,执行以下命令克隆仓库即可 :
76
+ 若已安装 git,执行以下命令克隆仓库 :
40
77
``` bash
41
78
git clone https://github.com/ScottSloan/Bili23-Downloader.git
42
79
cd Bili23-Downloader
43
80
```
44
81
45
- 若系统未安装 git,请下载 tar.gz 格式源码并解压,进入到 requirements.txt 同一级目录。
82
+ 若系统未安装 git,请下载上方 tar.gz 格式源码并解压,进入到 requirements.txt 同一级目录。
46
83
47
84
### 安装依赖
48
85
执行下面的命令一键安装所需依赖:
@@ -60,7 +97,7 @@ pip install -r requirements.txt
60
97
61
98
用户也可以手动安装:
62
99
``` bash
63
- pip install wxPython qrcode[pil]==7.4.2 requests
100
+ pip install wxPython> =4.2.0 qrcode[pil]==7.4.2 requests> =2.30.0
64
101
```
65
102
66
103
### 运行程序
Original file line number Diff line number Diff line change 1
1
# 开源许可
2
2
本项目在 MIT License 许可协议下进行发布
3
3
4
- wbi 签名以及部分接口参考 [ SocialSisterYi/bilibili-API-collect] ( https://github.com/SocialSisterYi/bilibili-API-collect )
4
+ wbi 签名以及部分接口参考 [ SocialSisterYi/bilibili-API-collect] ( https://github.com/SocialSisterYi/bilibili-API-collect )
5
5
编译版提供的 FFmpeg 来源于 [ gyan.dev] ( https://www.gyan.dev/ffmpeg/builds/ )
Original file line number Diff line number Diff line change 1
1
{
2
+ "name" : " bili23_downloader_docs" ,
3
+ "version" : " 1.55.0" ,
2
4
"scripts" : {
3
5
"docs:dev" : " vitepress dev" ,
4
6
"docs:build" : " vitepress build" ,
5
7
"docs:preview" : " vitepress preview"
6
8
},
9
+ "author" : " Scott Sloan" ,
10
+ "license" : " MIT" ,
7
11
"dependencies" : {
8
12
"vitepress" : " ^1.6.3" ,
9
13
"vue" : " ^3.5.13"
You can’t perform that action at this time.
0 commit comments