摘要:
1.首先你需要 创建好虚拟环境,如果不会 可以先点击学习一下 https://www.cnblogs.com/shyern/p/11284127.html (创建虚拟环境的博客) 2.打开vscode,中文选择 文件 >喜好 >配置 英文选择 file >Preferences >settings 阅读全文
摘要:
os.system("The command you want"). 这个调用相当直接,且是同步进行的,程序需要阻塞并等待返回。返回值是依赖于系统的,直接返回系统的调用返回值,所以windows和linux是不一样的 阅读全文
摘要:
目前正在学习FastAPI, 目前是学习到了引入静态文件。这是我引入的本地文件的方式 url_for('/static', path='/imgs/favicon.ico') 只要启动服务,就会报错500,根据学习文档发现只要引用静态文件有一点点错就GG 应该是这个引入 url_for('stati 阅读全文
摘要:
启发文章:https://www.jb51.net/article/184731.htm 之前我也是用到了os.popen()这个函数 1.os.popen(self.excel_path) 括号里为 cmd的操作 然后打包 使用 -w 程序直接崩溃 不使用 程序正常运转(出现黑窗口) 2.subp 阅读全文
摘要:
博主经验: 请不要开有道词典 请不要开有道词典 请不要开有道词典 阅读全文
摘要:
# 会持续更新 1.https://www.easyicon.net/covert/ 转换图片格式 ,大小 (用处 转成ico图片,16*16) 2.https://www.iconfont.cn/collections/index?spm=a313x.7781069.1998910419.3 阿里 阅读全文
摘要:
如图所示 如果出现的是这个问题可以可以考虑以下方法 首先卸载原先下载的 Pyinstaller pip uninstall pyinstaller 再执行以下代码,去github上下载 pip install https://github.com/pyinstaller/pyinstaller/ar 阅读全文
摘要:
如果pip install docx 过请先卸载,输入如下指令: pip uninstall docx 方法一: pip install python-docx 方法二: 下载: python_docx-0.8.6-py2.py3-none-any.whl 下载地址: http://www.lfd. 阅读全文
摘要:
1.先去查查 ffmpeg 这个东西 贼强 # 附上大佬博客 https://blog.csdn.net/qq_39752726/article/details/ 104263381?utm_medium=distribute.pc_relevant.none-task-blog-Blog Comm 阅读全文
摘要:
import datetimea = '2020-07-14 10:46:05'time1 = datetime.datetime.strptime(a, "%Y-%m-%d %H:%M:%S") # 需要将时间转换为 datetime类型x = 0for i in range(10000): #次 阅读全文