3 Star 7 Fork 3

21Hertz/DLS-CQhttp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.sh 879 Bytes
一键复制 编辑 原始数据 按行查看 历史
21Hertz 提交于 2024-06-26 17:12 . [sh] 修复路径问题
# 查找虚拟环境
if [ ! -d "venv" ]
then
# Termux不使用root、安装python与pyinstaller依赖
if [ "$OSTYPE" = "linux-android" ]
then
apt install python binutils ldd wget -y
else
sudo apt install python-is-python3 python3-pip python3-venv -y
fi
# 创建虚拟环境
python -m venv venv
fi
source venv/bin/activate
# Termux需要补全部分python库
if [ "$OSTYPE" = "linux-android" ] && [ ! -d "termux-lib" ]
then
echo -e "\033[32m[INFO] 开始补全python依赖库...\033[0m"
mkdir termux-lib && cd termux-lib || exit
wget https://gitee.com/dlcn/dlscq/releases/download/ws1.9.31/termux-lib.tar.gz
tar -xvf ./*.tar.gz && pip install ./*.whl -i "https://pypi.tuna.tsinghua.edu.cn/simple"
rm -r ./*.tar.gz && cd ..
echo -e "\033[32m[INFO] 补全python依赖库完成!\033[0m"
fi
# 运行构建脚本
cd scripts || exit
python build.py
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dlcn/dlscq.git
git@gitee.com:dlcn/dlscq.git
dlcn
dlscq
DLS-CQhttp
master

搜索帮助