上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 125 下一页
摘要: 带学生学习ROS,以树莓派4b为硬件平台,为他们指导写树莓派img,特发此文: 1. 下载镜像文件 从树莓派官网(https://www.raspberrypi.org/downloads/raspbian/)下载相应的镜像压缩包文件,分为带桌面和不带桌面版本。 2. 将下载的压缩包解压 得到.im 阅读全文
posted @ 2020-10-23 11:23 叕叒双又 阅读(717) 评论(0) 推荐(0)
摘要: 在C语言编程中,变量是最常见的元素之一。例如: int var1 = 10; int var2 = var1; 在以上代码中,第一行代码中,var1是左值,就是在赋值符号左侧的变量 第二行代码中,var2是右值,就是在赋值符号右侧的变量 对于赋值符号“=”而言,当变量在“=”号左边时,主要是表示变量 阅读全文
posted @ 2020-10-23 11:05 叕叒双又 阅读(623) 评论(0) 推荐(0)
摘要: 原文链接:https://www.cnblogs.com/coderfenghc/archive/2013/01/20/2846621.html CMake 用法导览 Preface : 本文是CMake官方文档CMake Tutorial (http://www.cmake.org/cmake/h 阅读全文
posted @ 2020-10-23 10:23 叕叒双又 阅读(121) 评论(0) 推荐(0)
摘要: 在使用matlab过程中,出现Failed to load module "canberra-gtk-module"的提示信息,打算看下相关软件是否安装,使用命令: locate libcanberra bash: locate:未找到命令 说明locate没有安装,解决方式如下: 1、安装软件: 阅读全文
posted @ 2020-10-20 11:24 叕叒双又 阅读(1727) 评论(0) 推荐(0)
摘要: 代码: import os #os.system('python hello1.py') while 1: print("****************\n") print("****************\n") num = input("please input a num: ") try: 阅读全文
posted @ 2020-10-17 17:18 叕叒双又 阅读(155) 评论(0) 推荐(0)
摘要: test1.py代码: 1 def disp(): 2 print 'hello world!' 同目录下test2.py代码: 1 import test1 2 3 print 'Hello jju!' 4 test1.disp() 执行结果没问题 阅读全文
posted @ 2020-10-17 17:13 叕叒双又 阅读(139) 评论(0) 推荐(0)
摘要: 代码main.py: 1 from PyQt5 import QtCore, QtGui, QtWidgets 2 import faceSet 3 4 5 class Ui_MainWindow(object): 6 def setupUi(self, MainWindow): 7 MainWin 阅读全文
posted @ 2020-10-17 07:46 叕叒双又 阅读(555) 评论(0) 推荐(0)
摘要: 主要参考:https://blog.csdn.net/simonforfuture/article/details/101716181 零、安装准备: 升级系统: sudo apt-get update sudo apt-get upgrade 安装依赖: sudo apt-get install 阅读全文
posted @ 2020-10-12 09:10 叕叒双又 阅读(473) 评论(0) 推荐(0)
摘要: sudo apt-get install fcitx fcitx-sunpinyin sudo apt install powerline wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf 阅读全文
posted @ 2020-10-12 06:36 叕叒双又 阅读(181) 评论(0) 推荐(0)
摘要: sudo apt-get install linux-source https://blog.csdn.net/weixin_33882443/article/details/93264245?utm_medium=distribute.pc_relevant.none-task-blog-Blog 阅读全文
posted @ 2020-09-28 00:30 叕叒双又 阅读(239) 评论(0) 推荐(0)
摘要: #include <stdio.h>int main(int argc, char **argv){ int var1 = 25; //初始化 66666666666666 //int *ptrVar1; //ptrVar1 = &var1; int* ptrVar1 = &var1; //ptrV 阅读全文
posted @ 2020-09-14 09:38 叕叒双又 阅读(263) 评论(0) 推荐(0)
摘要: 具体就是修改:vim .vim/colors/guodesert.vim文件,添加一行,内容为: "浅色背景使用显示效果不错 hi CursorLine ctermfg=NONE ctermbg=251 cterm=bold term=bold guibg=NONE guifg=NONE "深色背景 阅读全文
posted @ 2020-09-12 19:01 叕叒双又 阅读(406) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-08-25 14:02 叕叒双又 阅读(0) 评论(0) 推荐(0)
摘要: 添加清华anaconda镜像: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna. 阅读全文
posted @ 2020-08-07 16:13 叕叒双又 阅读(909) 评论(0) 推荐(0)
摘要: 安装有问题请:manjaro kde环境 错误发生的原因是缺少libselinux.so.1 从AUR安装libselinux.so.1,用命令:yay -S libselinux 原理:就是java缺失中文字体,可以补全字体即可,具体如下: 1、linux的中文字体选择文泉驿雅黑字体,在/usr/ 阅读全文
posted @ 2020-07-18 11:48 叕叒双又 阅读(2546) 评论(0) 推荐(0)
上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 125 下一页