摘要:
https://mahongfei.com/1776.html 阅读全文
摘要:
参考博客 nvidia-smi Failed to initialize NVML: Driver/library version mismatch //查看显卡驱动所使用的内核版本以及编译的gcc版本 cat /proc/driver/nvidia/version NVRM version: NV 阅读全文
摘要:
#include <pthread> 锁 #include <mutex> #include <thread> std::mutex my_lock; void test(){ std::lock_guard<std::mutex> lock(my_lock); } list队列 #include 阅读全文
摘要:
nvidia与gdm/gdm3不兼容 按 ctrl+alt+F2进入tty界面 sudo apt update sudo apt remove gdm3 //如果没有就gdm sudo apt autoremove sudo apt install lightdm sudo reboot 其他光标问 阅读全文
摘要:
opencv4.5.0/opencv3.4.16 一、 set(OpenCV_DIR "/usr/local/share/OpenCV") #OpenCVConfig.cmake所在的文件目录 find_package(OpenCV REQUIRED) include_directories(${O 阅读全文
摘要:
(base) lhw@lhw-Dell-G15-5511:~/Softwares/3rd/opencv_3/opencv-3.4.16/build$ sudo ldconfig /sbin/ldconfig.real: /usr/local/cuda-11.1/targets/x86_64-linu 阅读全文
摘要:
/usr/include/c++/10/chrono: In substitution of ‘template<class _Rep, class _Period> template<class _Period2> using __is_harmonic = std::__bool_constan 阅读全文
摘要:
查看安装的gcc/g++版本 ls /usr/bin/g++* ls /usr/bin/gcc* 查看当前使用的gcc/g++版本 gcc -v g++ -v 安装另一个版本 sudo apt-get install gcc-9 sudo apt-get install g++-9 切换gcc/g+ 阅读全文
摘要:
airsim-1.6.0官方文档 https://microsoft.github.io/AirSim/ airsim github地址 https://github.com/microsoft/AirSim https://microsoft.github.io/AirSim/settings/ 阅读全文