2021-08-16 07:36:36 +08:00
|
|
|
|
#!/bin/sh
|
2021-09-26 20:16:29 +08:00
|
|
|
|
# 安装所需库
|
2021-10-05 18:16:50 +08:00
|
|
|
|
python3 -m pip install --upgrade ttkthemes -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
|
|
|
|
python3 -m pip install --upgrade pyautogui -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
|
|
|
|
python3 -m pip install --upgrade keyboard -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
|
|
|
|
python3 -m pip install --upgrade requests -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
|
|
|
|
# 刷新图标缓存
|
|
|
|
|
gtk-update-icon-cache /usr/share/icons/bloom
|
2021-09-26 20:16:29 +08:00
|
|
|
|
# 向服务器返回安装数加1(不显示内容且忽略错误)
|
|
|
|
|
curl http://gfdgdxi.qicp.vip/uengine/Install.php -s > /dev/null | true
|