Setup script exited with error: command 'gcc' failed with exit status 1 由于没有正确安装Python开发环境导致。 Debin/Ubuntu Python2sudo apt-get install python-dev Pyth ...
分类:
其他好文 时间:
2020-06-30 10:34:36
阅读次数:
284
opencv_contrib提供了一些比较新或者说还不够成熟的函数,因为不够稳定所以没有加入到opencv中,但也有人要用到,所以就创建了这个项目。 安装之前要先安装依赖库,在终端输入一下命令: sudo apt-get install build-essential sudo apt-get in ...
分类:
其他好文 时间:
2020-06-29 15:24:18
阅读次数:
57
其他命令 目标 查找文件 find 软链接 ln 打包和压缩 tar 软件安装 apt-get 01. 查找文件 find 命令功能非常强大,通常用来在 特定的目录下 搜索 符合条件的文件 序号命令作用 01 find [路径] -name "*.py" 查找指定路径下扩展名是 .py 的文件,包括 ...
分类:
系统相关 时间:
2020-06-29 13:15:26
阅读次数:
79
1、sudo apt-get install qemu 后,运行arm文件pwn,报错 /lib/ld-linux-armhf.so.3: No such file or directory,如图: 2、下载 libc6-armhf-cross, ubuntu命令:sudo apt-get inst ...
分类:
系统相关 时间:
2020-06-29 13:09:41
阅读次数:
227
fetchq 是一个队列系统,以下是一个pgspider 扩展的构建 pgspider base 镜像 添加了uuid 扩展 FROM debian:stretch-slim RUN apt-get update && apt-get install -y build-essential git l ...
分类:
其他好文 时间:
2020-06-28 22:33:31
阅读次数:
62
https://blog.csdn.net/ustbyangcheng/article/details/8689632 sudo apt-get build-dep openscenegraph #安装必备依赖库 sudo apt-get install mesa-common-dev freegl ...
分类:
系统相关 时间:
2020-06-28 22:16:26
阅读次数:
111
工欲善其事,必先利其器。 Ubuntu18.04安装MySQL 1. 命令安装 sudo apt-get install mysql-server sudo apt-get install mysql-client sudo apt-get install libmysqlclient-dev 安装 ...
分类:
数据库 时间:
2020-06-28 18:49:39
阅读次数:
73
1.安装 sshpass apt-get install sshpass 2.携带密码登录 sshpass -p '12345678' ssh root@ip ...
分类:
系统相关 时间:
2020-06-27 19:49:44
阅读次数:
131
Yes, you can remove the CD-ROM (or or original installation media) from the sources.list Edit the sources.list file with the following command: sudo n ...
分类:
其他好文 时间:
2020-06-26 20:01:57
阅读次数:
58
如何通过命令行简单的执行C语言编写的程序 ? 首先,我们知道C语言程序都是以xxx.c结尾的,这在Windows系统和Linux系统都是一样的。其次,C程序的执行过程为四步:预处理——编译——汇编——链接。对于我们平时运行程序,用的编译C程序指令最多就是:gcc xxx.c -o xxx,其中为了简 ...
分类:
其他好文 时间:
2020-06-26 16:09:36
阅读次数:
44