一、环境 系统:win7,64位 python版本:2.7.15 pip版本:10.0.1 二、安装 1. 用pip安装 报错: 这个问题在网上搜了很久,其中有一篇文章[1]给出了两个原因: PyPI 服务器将你的ip加入黑名单了 你的pip版本过低 不过我是能打开https://pypi.pyth ...
分类:
数据库 时间:
2018-06-21 01:37:44
阅读次数:
257
在emacs编程中有以下需求 从调用一个函数的地方跳转到函数的定义的地方 或是反过来从函数定义的地方列出所有调用这个函数的地方 实现办法 需要安装以下软件 gnu global(阅读源代码的工具) "官网" emacs的gtags插件 启动emacs后,输入下面的命令,来启动gtags的功能 gnu ...
分类:
编程语言 时间:
2018-06-20 19:01:19
阅读次数:
236
运行object detection报错如下: Failed to find any matching files for /a-a/model.ckpt 原因是路径中不支持有-,所以/a-a是找不到该路径的。 ...
分类:
编程语言 时间:
2018-06-20 11:12:48
阅读次数:
5181
我看到的出处没有贴来源,我转于http://www.cnblogs.com/feisky/archive/2012/02/07/2341932.html windows下很多人都使用source insight 编写和查看代码。linux下可以使用VIM,刚开始会觉得VIM像windows下的记事本 ...
分类:
系统相关 时间:
2018-06-20 10:16:05
阅读次数:
1474
描述Implement wildcard paern matching with support for '?' and '*'.'?' Matches any single character. '*' Matches any sequence of characters (including ...
分类:
编程语言 时间:
2018-06-16 10:34:48
阅读次数:
210
描述Implement regular expression matching with support for '.' and '*'.'.' Matches any single character. '*' Matches zero or more of the preceding eleme ...
分类:
其他好文 时间:
2018-06-14 01:04:54
阅读次数:
179
1、模板匹配 运行指令:python template_matching.py --source 3.jpg --template 2.jpg 2、训练自己的物体探测器 作用:结合caltech101数据集,结合.mat文件,训练对象检测器,生成SVM线性支持向量机 train_detector.p ...
分类:
其他好文 时间:
2018-06-13 17:18:03
阅读次数:
263
在火狐浏览器33版本,python2.7运行selenium webdriver api报错:SessionNotCreatedException: Message: Unable to find a matching set of capabilities 网上搜了一下,说可以升级浏览器版本到52 ...
分类:
编程语言 时间:
2018-06-11 22:08:38
阅读次数:
747
说明下场景,代码如下: 有如下接口: 同时有下述两个实现类 EmployeeServiceImpl和EmployeeServiceImpl1: 调用代码如下: 在启动tomcat时报如下错误: 其实报错信息已经说得很明确了,在autoware时,由于有两个类实现了EmployeeService接口, ...
分类:
编程语言 时间:
2018-06-07 11:42:30
阅读次数:
164
连接Oracle12C的时候报错:ORA-28040: No matching authentication protocol 解决办法: sqlnet.ora 文件中添加如下参数 SQLNET.ALLOWED_LOGON_VERSION_SERVER=8 SQLNET.ALLOWED_LOGON_ ...
分类:
其他好文 时间:
2018-06-06 10:48:45
阅读次数:
164