Skip to content

Latest commit

 

History

History
49 lines (38 loc) · 1.01 KB

SETUP.md

File metadata and controls

49 lines (38 loc) · 1.01 KB

BiliDownloader 构建指南

1.直接运行py文件

准备运行环境

Python Version ~= 3.10

Operating System >= Windows 10

快速安装依赖库

下载代码

git clone https://gitee.com/majjcom/bili-downloader.git

这里建议建立虚拟环境

python3 -m venv ./venv

# 激活虚拟环境,每次使用都需要运行这个
# 为了方便可以不使用虚拟环境
./venv/Scripts/activate
pip install -r requirements.txt

运行前准备

下载支持AV1的ffmpeg可执行文件,并将ffmpeg文件夹解压至main.py所在的目录下

目录结构大概是这样:

/--main.py
 |-requirments.txt
 |-ffmpeg/--ffmpeg.exe
 |        |-xxx.dll
 |        |-...
 |-...

运行

在当前目录下运行以下命令

python compile_ui.py
pythonw main.py

当然,也可以写 shell 文件来快速启动,这里不再讲解,参照此处的 shell 即可