libcurl是免费的轻量级的客户端网络库,支持DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet, TFTP.支持SSL, HTTPPOST,HTTPPUT, FTP上传, HTTP form上传,代理,cookies, 用户名与密码认证. 系统环境:Ubuntu 16.04源码:curl-7.63…
1. xmlrpc-c依赖与libcurl 参考另外一篇随笔:https://www.cnblogs.com/flyinggod/p/10148228.html 2. 下载源代码 http://xmlrpc-c.sourceforge.net/ 3. 编译代码 ./configure –host=arm-linux-gnueabihf/arm-linux CC=arm-linux-gnueabihf-gcc CXX=arm-linux-gnueabihf-g++ –prefix=install_…
官方教程:http://caffe.berkeleyvision.org/install_apt.html 主要参考教程: https://github.com/BVLC/caffe/wiki/Ubuntu-16.04-or-15.10-Installation-Guide 其他参考:http://blog.csdn.net/hjimce/article/details/51999566 http://www.52nlp.cn/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%…
源文件内使用unordered_map时候,例如如下demo #include <unordered_map> void foo(const std::unordered_map<int,int> &) {} int main() { foo({}); } GCC版本大于或者等于4.9,会报如下错误 map2.cpp:7:19: error: converting to ‘const std::unordered_map<int, int>’ from init…
1. 下载源文件https://github.com/google/glog 2. 源文件有CMakeLists.txt, 直接使用toolchain.cmake 直接编译就可以了,详情参考我的随笔 https://www.cnblogs.com/flyinggod/p/10148228.html…
系统环境: Ubuntu 16.04.2 LTS nginx version: nginx/1.10.3 (Ubuntu) PHP 7.0.22-0ubuntu0.16.04.1 mysql  Ver 14.14 Distrib 5.7.20 一.环境准备: 检测网络环境 ping -c2 baidu.com 更新apt源 sudo apt update 二.安装Nginx 1.安装Nginx sudo apt-get install nginx -y 2.编辑配置nginx文件 sudo vi…
前言 我们在这里做2件事情: 1)编译 paho.mqtt.mosquitto 2个开源项目的c版本库(mosquitto库没有用上) 2)编译好 依赖 paho.mqtt的库编写例程 + mosquitto 服务器. host平台 :Ubuntu 16.04 arm 平台 : s5p6818 ssl : openssl-1.0.2t MQTT-client : paho.mqtt.c 现在我们就来进行MQTT客户端的移植. MQTT服务器(Broker)在很多 云服务器中自带了,没有特殊需求是…
序章 序1:TestLink和TestLink-API-Python-client 目前TestLink的最新版本是1.9.19 TestLink-API-Python-client支持的TestLink最高版本是1.9.17 如果后期要使用TestLink-API-Python-client和jenkins交互,那么TestLink只能选择1.9.17版本 序2:TestLink部署基本要求 TestLink 1.9.19 环境依赖包括: 依赖项 版本要求 web服务 Apache 2.x P…
目录 深度学习环境搭建:Tensorflow1.4.0+Ubuntu16.04+Python3.5+Cuda8.0+Cudnn6.0 Reference 硬件说明: 软件准备: 1. 安装Ubuntu16.04 2. 安装显卡驱动 3.安装Cuda8.0 4. 安装Cudnn6.0 5. 清华源安装Anaconda 6. 安装tensorflow 7. 验证您的安装 运行一个简短的 TensorFlow 程序 8. 卸载cudnn5.1升级为cudnn6.0 深度学习环境搭建:Tensorflo…
背景 Ffmpeg 中带有h264的解码,没有编码,需要添加x264.libx264是一个自由的H.264编码库,是x264项目的一部分,使用广泛,ffmpeg的H.264实现就是用的libx264. FFmpeg是一套可以用来记录.转换数字音频.视频,并能将其转化为流的开源计算机程序.采用LGPL或GPL许可证.它提供了录制.转换以及流化音视频的完整解决方案. librtmp用来接收.发布RTMP协议格式的数据.FFmpeg支持RTMP协议,将librtmp编译进去后支持协议RTMPE.RMT…