02 2022 档案
摘要:sudo find / -name libopencv_imgproc.so.4.3找不到 但是执行sudo find / -name libopencv_imgproc*找到了libopencv_imgproc.so.4.5 于是通过建立软链接解决了这个问题 sudo ln -s /opt/int
阅读全文
摘要:百度搜索python,下载需要的python版本 源码包下载 下载tgz文件 安装: tar zxvf Python-3.7.12.tgz cd Python-3.7.12 ./configure --prefix=/usr/local/python3.7 sudo make && sudo mak
阅读全文
摘要:开机按F7进入boot 然后参考: https://www.cirmall.com/bbs/thread-94727-1-1.html https://jingyan.baidu.com/article/20095761baf253cb0721b40a.html
阅读全文
摘要:解决: https://github.com/ContinuumIO/anaconda-issues/issues/11569
阅读全文
摘要:https://zhidao.baidu.com/question/238480905.html
阅读全文
摘要:解决:https://forum.hello-robot.com/t/expired-ros-gpg-key-new-realsense-apt-repo/205
阅读全文
摘要:a是一个普通变量 b是一个指针变量 则a = *b *是指针运算符,用来取得某个地址上的数据 &a = b &用来获得普通变量的地址 2. 变量名、函数名、字符串名和数组名在本质上是一样的,它们都是地址的助记符,但在编写代码的过程中,我们认为变量名表示的是数据本身,而函数名、字符串名和数组名表示的是
阅读全文
摘要:1.执行catkin_make时报错, Could not find a package configuration file provided by "map_server" with any of the following names: map_serverConfig.cmake map_s
阅读全文