上一页 1 2 3 4 5 6 7 ··· 27 下一页
摘要: 1. 安装vscode和cmake sudo apt install cmake 2. 安装vscode的cmake扩展 CMake CMake Tools 3. 在显示所有命令中执行build命令 ctrl+shift+P cmake:build # 快捷键F7 参考:https://zhuanl 阅读全文
posted @ 2022-08-12 15:28 盛夏夜 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1. 使用top查看内存信息 ps -ef | grep process # 查看进程id top -p process_id # 查看内存信息 2. 使用ps查看内存信息 ps -aux | grep process # USER PID %CPU %MEM VSZ RSS,其中RSS为物理内存 阅读全文
posted @ 2022-08-12 14:56 盛夏夜 阅读(3586) 评论(0) 推荐(1) 编辑
摘要: 1. 安装Pytorch pip install torch==1.8.2 torchvision==0.9.2 --extra-index-url https://download.pytorch.org/whl/lts/1.8/cpu 运行Python import torch print(to 阅读全文
posted @ 2022-08-12 14:40 盛夏夜 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 方法1: 1.使用ssh远程登录到服务器上 ssh username@ip 2.在远程服务器上打开jupyter-lab服务,不要打开浏览器,并修改端口 jupyter-lab --no-browser --port=8889 3.在本地PC上使用ssh映射远程服务器的端口 ssh -N -f -L 阅读全文
posted @ 2022-08-08 10:35 盛夏夜 阅读(1094) 评论(0) 推荐(0) 编辑
摘要: 1. 下载deepin 20.3和U盘写入工具,并按提示安装系统 步骤: 1. 到官方网站下载deepin20.3和U盘写入工具 2. 使用U盘,根据提示安装deepin20.3 3. 安装时选择安装nvidia驱动 4. 安装完毕后,关闭grub主题,设置->通用信息->主题(关闭) 5. 拷贝下 阅读全文
posted @ 2021-12-24 10:58 盛夏夜 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 说明: 亿图图示安装后在任务栏中图标显示乱码。主要是因为图标文件设置不正确,修改图标文件中对应的中文显示名称即可。 操作: 1. sudo vim /usr/share/applications/edrawmax.desktop 2. 修改内容为 原版: [Desktop Entry] Catego 阅读全文
posted @ 2021-12-24 10:50 盛夏夜 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 链接: https://bobjin.com/blog/view/ee2b14fab664b464b0aa2379b15bdba4.html https://blog.51cto.com/qiangsh/2046740 https://www.jianshu.com/p/66426a8f1bb9 说 阅读全文
posted @ 2021-09-03 16:27 盛夏夜 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 链接: https://paddle-lite.readthedocs.io/zh/latest/source_compile/compile_env.html https://paddle-lite.readthedocs.io/zh/latest/demo_guides/x86.html htt 阅读全文
posted @ 2021-07-07 10:20 盛夏夜 阅读(585) 评论(0) 推荐(1) 编辑
摘要: 基于pyqt的电子时钟 介绍 通过电子时钟完成了基于pyqt的一个综合项目,其中包括UI界面与逻辑代码分离设计的思想,更新界面在主线程中完成,逻辑代码在子线程中完成。子线程的处理结果通过信号发送给主线程进行更新界面。子线程通过继承主线程来访问主线程的共享资源,主线程通过对象方法来访问子线程的资源。涉 阅读全文
posted @ 2021-02-09 13:45 盛夏夜 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 步骤: 1. pycharm添加designer File->Setting->Tools->External Tools-> Program:/home/yuandanfei/anaconda3/bin/designer Working directory:$ProjectFileDir$ 2.  阅读全文
posted @ 2021-02-09 13:11 盛夏夜 阅读(384) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 27 下一页