01 2022 档案
摘要:python 内存中读写文件流 作用:避免磁盘io,性能上去了 demo 图片旋转 from typing import Unionfrom PIL import Imagefrom io import BytesIO# BytesIO 可以开辟一段内存空间用来对Bytes类型进行IO操作def
阅读全文
摘要:python excel 处理 方案一 xlrd & xlwt &xlutils 使用xlrd 用来读取 xls 文件 xlrd --> xls read 安装 pip install xlrd 使用 import xlrdbook = xlrd.open_workbook("myfile.xls
阅读全文
摘要:libreOffice doc 转pdf 下载 https://zh-cn.libreoffice.org/get-help/install-howto/linux/ 下载安装包 Linux系统下的安装包请到下载页面获取。有两种打包方式:适用于 Debian/Ubuntu 的 ".deb" 包,以及
阅读全文
摘要:服务器重启后 Nvidia 环境错误 服务器重启后 服务运行报错,查看日志是Nvidia 驱动出了问题 system has unsupported display driver / cuda driver combination.系统具有不受支持的显示驱动程序/cuda驱动程序组合。 查看一下 看
阅读全文
摘要:WIN11 安装go 安装go环境 https://studygolang.com/dl 然后安装到c盘就行了 配置环境变量 需要设置环境变量才能用 设置gopath 手动创建项目目录结构,以后代码都放这里了 查看 go 环境 go env 项目组织 src下 通过域名组织项目 编译 必须要且只能有
阅读全文