排序
C++解决fatal error: Eigen/Sparse: No such file or directory
这个错误通常表示你的编译器无法找到Eigen库的头文件。现确定已经正确安装了Eigen库,并在编译时添加了正确的头文件路径。 sudo apt-get install libeigen3-dev 安装后fatal error: Eigen/Spars...
Android开发中布局全部堆在左上角
在Android开发中,写完界面发现控件全部堆在左上角 解决方法 使用此方法自定义控件位置,在xml控件位置写入 app:layout_constraintBottom_toBottomOf='parent' app:layout_constraintLeft_toLef...
dockerfile构建的镜像提示docker-entrypoint.sh: no such file or directory
dockerfile构建的镜像 exec ./docker-entrypoint.sh: no such file or directory 遂开始漫长的debug之路。。 看了看目录发现docker-entrypoint.sh还在那没有不小心删了 检查了dockerfile发现也...
加速make的编译速度
使用make编译时速度非常慢,没加速前1秒钟1条几乎,近10分钟进度不足10% 我们可以使用make的-j参数,让make同时执行多条编译命令 make -j4 使用后编译速度明显提升
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Docker中使用pip install报错 解决方法 pip install xxxxx -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
qq直接添加好友 API PHP源码
在网页中点击后可以直接唤醒qq添加好友 如果设置了添加好友需要验证消息,则直接弹出发送验证消息界面 如果是无需验证直接添加,则访问api后直接添加好友 打包成了PHP接口,可以直接调用来添加...
云影密码
云影密码又称01248密码,是古典密码中的一种 原理 1)通过0来分割 2)分割后每个数相加 3)通过字典进行解密 字典 { 1:'A', 2:'B', 3:'C', 4:'D',...
GDAL在win64下编译失败
编译gdal时提示 LINK : error LNK2001: 无法解析的外部符号 _OSRValidate LINK : error LNK2001: 无法解析的外部符号 _OPTGetProjectionMethods LINK : error LNK2001: 无法解析的外部符号 _OGR...