摘要: 参考链接 python的打包神器——Nuitka 如果提示“no module named xxx”,将文件夹复制至打包出来的文件夹下就好。。。 阅读全文
posted @ 2022-03-21 15:26 Jamin_Ben 阅读(409) 评论(0) 推荐(0)
摘要: # PyQt库 from PyQt5.QtCore import * from PyQt5.QtWidgets import * from PyQt5.QtGui import * # 其他库 import sys import os # pyuic5转化后的ui库 from ui.demo_mai 阅读全文
posted @ 2022-03-21 10:33 Jamin_Ben 阅读(53) 评论(0) 推荐(0)
摘要: 故障现象描述 最近在淘宝购买了一台二手的1U服务器,dell r420 系统配置大致如下: e5 2450 x2 16核心32线程 64G内存 ddr3 1333mhz ibm sas 3t机械 h310 mini阵列卡 Windows server 2016 datacenter 共享文件夹设置 阅读全文
posted @ 2022-03-07 12:05 Jamin_Ben 阅读(1561) 评论(0) 推荐(0)
摘要: D525小主机刷入openwrt并设置旁路由模式 首先感谢恩山论坛“菊花帅比”提供的镜像 https://www.right.com.cn/forum/thread-7807733-1-1.html 论坛回复可见内容: 推荐IPK下载安装仓库 https://op.supes.top/package 阅读全文
posted @ 2022-03-01 11:32 Jamin_Ben 阅读(4442) 评论(0) 推荐(0)
摘要: QT5设定QWebEngineView大小 最近在一个小项目里头需要用到QWebEngineView,查询了网上各位大佬的用法,发现都是塞满整个窗口或者是用布局器和其他元素排列实现“非全屏”,类似这种 但这都不是我想要的,能不能让它,就是变成我想要的形状,你懂我意思吧 比如这样 直接贴代码 ui文件 阅读全文
posted @ 2022-02-21 10:46 Jamin_Ben 阅读(2358) 评论(0) 推荐(0)
摘要: frp windows自启动 需要用到的软件 1、NSSM 下载地址(http://www.nssm.cc/download )作用是将exe、bat等程序变成windows服务 2、frp 启动bat脚本 bat脚本 @echo off frpc.exe -c frpc.ini nssm操作 如图 阅读全文
posted @ 2022-02-18 10:17 Jamin_Ben 阅读(1736) 评论(0) 推荐(0)
摘要: pip永久设置国内源 pip config --global set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple pip config --global set install.trusted-host tuna.tsinghu 阅读全文
posted @ 2022-02-16 19:01 Jamin_Ben 阅读(123) 评论(0) 推荐(0)
摘要: vcpkg安装 步骤 //git项目 git clone https://github.com/microsoft/vcpkg //运行bat安装脚本 ./bootstrap-vcpkg.bat //集成到全局 ./vcpkg.exe integrate install //取消集成到全局 ./vc 阅读全文
posted @ 2022-02-13 14:07 Jamin_Ben 阅读(119) 评论(0) 推荐(0)
摘要: QT 5.12.2安装记录 系统环境 win10 企业版 2019 LTSC vs2017 qt 5.12.2 第一步 安装vs2017 vs2017微软官方下载地址 勾选如下 第二步 安装windows kits 蓝奏云下载 勾选Debugging Tools for Windows即可(我这里偷 阅读全文
posted @ 2022-02-13 13:15 Jamin_Ben 阅读(340) 评论(0) 推荐(0)