上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 56 下一页
摘要: 机器环境说明: Visual Studio的话,只装了Visual Studio 2017。 vc_redist的话,只装了VS2017的版本。 发生问题的场景: 使用VS2017,编译ld工程,它编译出库ld;ld依赖于neat库,neat库是预先用VS2015编译好的 使用VS2017,编tes 阅读全文
posted @ 2020-08-21 10:00 ChrisZZ 阅读(1694) 评论(0) 推荐(0) 编辑
摘要: 需要先安装Python和Visual Studio。已经是2020年了,推荐Miniconda/Anaconda的python3.7(或更高版),以及VS2017(VS2019没必要) 下载代码(建议在git-bash里操作): git clone https://gitee.com/aczz/co 阅读全文
posted @ 2020-08-03 15:44 ChrisZZ 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 安装qt 我是ubuntu20.04,安装qt用的是apt方式: sudo apt install qtcreator qt5-default qtbase5-doc-dev qtbase5-examples (2022-02-06 18:53:10 补充更正 还需要装这些:) sudo apt i 阅读全文
posted @ 2020-08-01 08:07 ChrisZZ 阅读(3524) 评论(1) 推荐(1) 编辑
摘要: sudo apt install unrar 注意事项: 1. 找不到unrar E: 软件包 rar 没有可安装候选 (base) arcsoft-43% sudo apt install unrar 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 没有可 阅读全文
posted @ 2020-07-30 17:52 ChrisZZ 阅读(1549) 评论(0) 推荐(0) 编辑
摘要: 譬如目标平台是arm的板子,arm-none-eabi-g++作为编译器。手头没有板子来运行代码,而代码中又需要确定sizeof(xx)的值。如下代码包含了两种方法。 #include <iostream> #include <stdio.h> #include <cmath> #include < 阅读全文
posted @ 2020-07-29 17:01 ChrisZZ 阅读(765) 评论(0) 推荐(0) 编辑
摘要: ubuntu 16.04 miniconda装的python, 3.7.3 sudo apt install pyqt5-dev sudo apt install python3-pyqt5 pip install pyqt5 --only-binary pyqt5 测试代码:morvan.py # 阅读全文
posted @ 2020-07-27 10:24 ChrisZZ 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 目录0. 简介1. 系统安装后立即做的配置1.1 换源彻底关闭软件更新提示1.2 开发相关的基本包1.3 zsh, oh-my-zsh, josh2. 系统安装以及硬盘相关2.1 U盘启动ubuntu(安装),进不去桌面2.2 启动后提示硬盘出错,进入busybox的initramfs界面2.3 提 阅读全文
posted @ 2020-07-19 17:06 ChrisZZ 阅读(1072) 评论(51) 推荐(0) 编辑
摘要: 目录0. 本文目的1. git使用GUI比较程序配置使用2. git中文件的几种状态git diff和git diff --cachedgit difftool和git mergetool查看版本差异/版本回退/撤销回退3. 单个文件撤销工作区修改4. 查看远端(remote)地址5. 删除untr 阅读全文
posted @ 2020-07-19 16:52 ChrisZZ 阅读(554) 评论(0) 推荐(0) 编辑
摘要: 记录使用 cmake 时的常见需求和解决办法。 Last update: 2024.04.04 目录0. 推荐的CMake版本1. 用于执行CMake的.bat脚本2. 判断CPU架构:32位还是64位?3. 判断Visual Studio版本4. 判断操作系统5. 判断是Debug还是Releas 阅读全文
posted @ 2020-07-19 16:50 ChrisZZ 阅读(5940) 评论(5) 推荐(2) 编辑
摘要: 当tkinter里的一个组件是图像时,如果允许缩放主窗口的同时,让图像也缩放,有时候是一种需求。 主要实现方法是bind一个回调函数。这里的例子是,图像上绘制了矩形框,当窗口被用鼠标缩放时,图像缩放,框也缩放。 # coding: utf-8 """ Demonstrates how to resi 阅读全文
posted @ 2020-06-01 17:13 ChrisZZ 阅读(3777) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 56 下一页