上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: title: Python 杂记 date: 2022-12-10T13:56:22Z lastmod: 2022-12-28T13:22:34Z 公用方法 合并操作 +​ 两个对象相加操作,会合并两个对象 适用于字符串,列表,元组 strA = '人生苦短' strB = '我用Python' p 阅读全文
posted @ 2023-10-03 17:15 天空之城00 阅读(25) 评论(0) 推荐(0)
摘要: title: Python代码打包exe可执行程序 date: 2022-11-18T18:52:46Z lastmod: 2022-11-18T18:52:46Z Python代码打包exe可执行程序 1.将需要打包的内容单独放在一个文件夹中 2.创建一个虚拟环境(虚拟环境打包出来的体积相对小很多 阅读全文
posted @ 2023-10-03 17:14 天空之城00 阅读(32) 评论(0) 推荐(0)
摘要: title: 让python pip使用国内镜像 date: 2022-11-18T18:52:50Z lastmod: 2022-11-18T18:52:50Z 让python pip使用国内镜像 国内源 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里 阅读全文
posted @ 2023-10-03 17:13 天空之城00 阅读(38) 评论(0) 推荐(0)
摘要: QtCreator 使用 onedark 主题 配置文件 文本编辑器配置文件 在 D:\Qt\Tools\QtCreator\share\qtcreator\styles​ 中创建一个 onedark.xml​ 文件,然后在文件里面写入以下内容: <?xml version="1.0" encodi 阅读全文
posted @ 2023-10-03 17:10 天空之城00 阅读(535) 评论(0) 推荐(0)
摘要: Qt 安装 下载 Qt 在线安装器 Qt 官网:https://www.qt.io/download Qt 在线安装器:https://download.qt.io/official_releases/online_installers/ 打开清华 Qt 镜像安装指南 网址:https://mirr 阅读全文
posted @ 2023-10-03 17:10 天空之城00 阅读(37) 评论(0) 推荐(0)
摘要: Rust 安装和配置 一、下载 Rust 官网:https://www.rust-lang.org/zh-CN/ 二、改变安装目录 在想安装的位置新建Rust文件夹,并添加 .rustup 和 .cargo 两个文件夹 在系统环境变量中新增两个环境变量,分别指向两个这文件夹 打开从官网下载的安装程序 阅读全文
posted @ 2023-10-03 17:08 天空之城00 阅读(693) 评论(0) 推荐(0)
摘要: title: Rust 学习笔记 date: 2022-11-18T17:14:25Z lastmod: 2022-11-18T17:14:25Z Rust 学习笔记 Hello, World! fn main() { println!("Hello, World!"); } 编译与运行Rust程序 阅读全文
posted @ 2023-10-03 17:08 天空之城00 阅读(156) 评论(0) 推荐(0)
摘要: title: Rust编译的时候报出link.exe not found错误 date: 2022-11-18T18:32:27Z lastmod: 2022-11-18T18:32:27Z Rust编译的时候报出link.exe not found错误 报错内容 C:\rustspace>rust 阅读全文
posted @ 2023-10-03 17:07 天空之城00 阅读(384) 评论(0) 推荐(0)
摘要: title: MySQL安装文档 date: 2022-11-18T18:34:33Z lastmod: 2022-11-18T18:34:33Z 安装环境:Win10 64位 软件版本:MySQL 5.7.24 解压版 一、下载 点开下面的链接: https://downloads.mysql.c 阅读全文
posted @ 2023-10-03 17:06 天空之城00 阅读(26) 评论(0) 推荐(0)
摘要: title: MySQL学习笔记 date: 2022-11-18T18:19:34Z lastmod: 2022-11-18T18:46:23Z MySQL 学习笔记 数据库 数据库相关概念 数据库 存储和管理数据的仓库,数据是有组织的进行存储。 数据库英文名是 DataBase,简称 DB。 数 阅读全文
posted @ 2023-10-03 17:06 天空之城00 阅读(34) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页