今天在导入一个项目的时候,as报错 Error: A library uses the same package as this project 经过百度Google 发现解决办法:在modules的build.gradle下添加这行代码,如果不成功,试试在app 下添加. android { compileSdkVersion 23 buildToolsVersion "23.0.1" enforceUniquePackageName = false }…
nghttp2 报错error: Libtool library used but ‘LIBTOOL‘ is undefined 如果重新安装libtool和autoconf升级到2.69后,还是报错, 则进行下面的操作: 1,查看aclocal的路径 aclocal --print-ac-dir 显示/usr/local/share/libtool/m4 ls看看里面没有m4文件. 则copy /usr/share/libtool/m4里面的m4文件到此目录下. 2,cd到nghtt2目录 执…
我装的Navicat Premium是64位的,计算机也是64位的,故在oracle网上下了一个64位的instantclient-basic-windows.x64-11.2.0.4.0.zip 地址是:http://www.oracle.com/technetwork/topics/winx64soft-089540.html 不要看网上说的就下载32位的,事实证明,要看装的版本,我的都是64位的,所以只有下载64位的才有用.…
因为当你创建一个虚拟环境的时候,一些软链接创建到原来的python上. 当用Homebrew更新python后,原来软连接对应的python已经不存在了. 因此需要把软链接指向新的python. 解决方法是移除原来虚拟环境里的软连接,然后重新创建: find ~/.virtualenvs/my-virtual-env/ -type l -delete # 找到旧链接并删除 virtualenv ~/.virtualenvs/my-virtual-env # 创建新链接 我的问题解决了. 此回答来…
在*** setting*** 中引入库   Library  SeleniumLibrary  报错 unknown seleniumlibrary library ,try to use quick fix(ctrl+1) or add library to red.xml for proper validation python安装在d盘.…
今天遇到个很奇葩的问题,在写一个应用程序时需要查询表的数据,但是表名是全数字的,直接查询会报错,于是想到给111的表名加一对中括号:即——>select * from [111] 刚开始还是报错,于是找同事帮忙,他用了一个语法:select * from [pd].[dbo].[111] 这个语法时完整的表名  于是解决了这个问题,后来我又去测试select * from [111] 这句话,竟然也可以用了- -…
cinder-volume报错vmdk2 is reporting problems, not sending heartbeat. Service will appear "down". 2019-04-21 03:08:39.255 36 WARNING cinder.volume.manager [req-fc576c81-8b77-46cd-aa9a-f2eb30a96e75 - - - - -] Update driver status failed: (config nam…
1.运行ng serve的时候卡在95% emitting LicenseWebpackPlugin 放弃使用cnpm,使用yarn 删除node_modules (不需要删除project目录重新ng new) 安装yarn:npm install --global yarn 配置仓库: npm config set registry http://registry.npmjs.org/ yarn config set registry https://registry.yarnpkg.com…
场景: 使用plsql/developer 将原本要求非空的字段   改为可以为空 然后在插入数据的时候 报错改字段约束条件还起作用 解决方案: 首先查询该表的约束条件 select * from user_constraints where table_name='TABLENAME',(这里要注意TABELNAME必须是大写) 发现该字段的约束条件还存在 删除该约束条件: ALTER TABLE TABLENAME DROP CONSTRAINT SYS_C0049484.[注:这里不需要使…
openkm:6.3.4 使用google浏览器打开,想预览文件,但是pdf.word和图片都不能显示.只是显示空白. 换成IE后,再次尝试,发现了报错信息: 解决方案: 1- Stop openkm.2- Ensure you have deleted /webapps/OpenKM and work/Catalina/localhost folders3- Ensure you have cleaned the browser cache4- Start openkm…