linux
一只奋进的小蜗牛
这个作者很懒,什么都没留下…
展开
-
cuda版本问题:安装pytorch时遇到cuda版本问题
CMake Error at cmake/public/cuda.cmake:318 (message): CUDA 9.1 is not compatible with std::tuple from GCC version >= 6. Please upgrade to CUDA 9.2 or use the following option to use another version (for example): -DCUDA_HOST_COMPILER=/usr/bin原创 2021-03-19 14:52:19 · 1057 阅读 · 3 评论 -
解决“Cmake error :generator: Ninja“问题
原因在于版本不统一,之前编译过CMakeLists.txt后,产生了缓存文件CMakeCache.txt,解决方案:删除CMakeCache.txt文件,解决。rm -f `find -name CMakeCache.txt`原创 2021-03-19 12:54:48 · 3057 阅读 · 0 评论 -
Linux笔记(一) -- 编译.cpp文件,出现“g++: error: pkg-config --libs --cflags opencv: 没有那个文件或目录“错误的解决方案
1.错误内容:~$ g++ display .cpp -o display 'pkg-config opencv --cflags --libs'g++: error: pkg-config --libs --cflags opencv: 没有那个文件或目录2.解决方法:g++ display .cpp -o display `pkg-config opencv --cflags --libs`display.cpp是项目的.cpp文件而pkg-config opencv --cflags原创 2020-08-12 15:55:43 · 2778 阅读 · 2 评论 -
Linux笔记(一) -- 运行程序,出现Failed to load module “canberra-gtk-module“错误的解决方案
1.错误内容错误描述执行程序时,提示如下错误:Failed to load module "canberra-gtk-module"2.解决方案sudo apt-get install libcanberra-gtk-module安装完成即可原创 2020-08-12 11:40:35 · 950 阅读 · 2 评论