安装系统从光盘启动报错: 出现黑屏,并且有一个提示框image failed to verify with *access denied*press any key to continue 原因:三星笔记本对系统有降级保护,在将win8改装为win7是,需要设置bios. 1.开机按F2 进入bios,找到Boot-->secure boot-->改为:disabled---->OS Mode Selection改为:CSM OS. 2.在 advanced-->fast bios…
解决方法: 在AndroidManifest.xml中的provider中的authorities后加几个数字即可. 2017.09.01: 我发现有的项目AndroidManifest.xml中没有provider 解决方法: 1.打开File-Settings. 2.取消图中勾选.…
使用pip3在线安装tesserocr时报错,刚开始报错内容是提示未安装vs2014,安装完以后报错内容如下 ERROR: Command errored out with exit status 1: command: 'c:\users\administrator\appdata\local\programs\python\python37\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"…
一.说明 在Oracle安装过程中,可能遇到out of memory这种错误,这是由于系统内存不足导致!我们可以通过加内存的方式解决! 而如果是另一种情况呢: 例如我在主机上装了两个Oracle服务端,其中Oracle12c安装在/u01/app/oracle目录下,Oracle11g安装在/u02/app/oracle目录下! 首先我安装Oracle12c时多给了内存,导致后面安装Oracle11g时报错:out of memory.此时我该如何调整Oracle12c的内存呢? 二.调整内存…
在Xubuntu上的python2虚拟环境中, 使用pip安装tesserocr时报错error: command 'x86_64-linux-gnu-gcc' failed with exit status 1, 一般是因为缺少libtesseract-dev, 在终端输入以下命令安装即可:sudo apt install libtesseract-dev 如果安装之后没有解决问题,可以输入以下命令安装类库: sudo apt-get install libxml2-dev libxslt1-…
联想G480笔记本安装系统 联想G480笔记本,配置i5双核四线程处理器,4G内存,500G硬盘,USB3.0接口,NVIDIA GeForce GT 610M+Intel HD Graphics 3000 (GT2+)双显卡切换. 刚买的时候,厂家安装的WIN7旗舰版,启动和运行速度还不如我几年前的方正单核笔记本,WIN7的各种纠结,严重不适应,准备重新安装系统. 因为XP最大支持3G多内存,那个4G补丁也不稳定,为了4G内存,准备安装win 2003 server ee sp2 ghost版…
CentOS6.5安装readline时报错:/usr/bin/ld : cannot find -lncurses 解决方法: 安装ncurses-devel,输入命令: #yum install ncurses-devel ###安装完成后重新安装readline(#pip install readline)即可### 参考资料: 1.http://bbs.chinaunix.net/thread-2262638-1-1.html…
安装tcpreplay时报错configure: error: libdnet not found 解决方法: 下载包libdnet-1.8.tar.gz并安装,依次执行: ./configure make make install 验证问题解决. 下载地址:http://download.chinaunix.net/download/0006000/5777.shtml…
在安装 node-sass 时报错,截图如下 解决方法如下: npm install --save node-sass --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist --sass-binary-site=http://npm.taobao.org/mirrors/node-sass --registry=https://registry.npm.taobao.org 淘宝npm包镜…
使用pip方法安装Django时报错'module' object has no attribute 'lru_cache' 解决办法如下 命令行输入命令sudo pip install Django,如下图 安装不成功 原因是因为python版本和django版本不一致导致 安装命令中指定安装的Django版本,sudo pip install Django ==1.9…