=============================================== yum install error: protected multilib versions error===============================================sudo yum downgrade openssl 降级sudo yum install openssl-devel ===另外参考====================================…
开始以为是没有安装openssl, openssl-devel,安装后发现还是提示这个错误,搜索了一下evp.h,这个文件也存在.GOOGLE 了一下,在stackoverflow,找到了答案,原来是 phpize 生成的configure脚本有问题. 解决方法: export PHP_OPENSSL_DIR=yes ./configure -with-openssl-dir=/usr/include/openssl…
开始以为是没有安装openssl, openssl-devel,安装后发现还是提示这个错误,搜索了一下evp.h,这个文件也存在.GOOGLE 了一下,在stackoverflow,找到了答案,原来是 phpize 生成的configure脚本有问题. 解决方法:修改configure 文件加入 这个是安装mysqlnd扩展报错的 export PHP_OPENSSL_DIR=yes ./configure --with-php-config=/home/php/bin/php-config -…
linux下安装svn出现configure: error: We require OpenSSL; try --with-openssl http://blog.csdn.net/woshixiongjin/article/details/9174529 错误提示需要安装openssl,所以我就安装了一个openssl,安装方法如下: cd /usr/local wget http://www.openssl.org/source/openssl-1.0.0a.tar.gz tar -zxvf…
一次在安装php7其中提示错误信息 configure: error: Cannot find OpenSSL's libraries 出现这种有2中情况,一种是没有安装 openssl,另一种是安装了找不到libssl.so 文件. 先安装openssl sudo apt-get install openssl 如果还提示该错误的话,查找一下libssl.so所在位置,重新连接一下 find / -name libssl.so 输出 /usr/lib/x86_64-linux-gnu/libs…
问题 mac安装php需要openssl ./configure –with-openssl 报错 error: Cannot find OpenSSL’s 解决 brew install openssl ./configure --with-openssl=/usr/local/Cellar/openssl/1.0.2l/ == php52与56共存的.使用下面的cd /ext/openssl /usr/local/Cellar/php52bysk/bin/phpize ./configure…
踩坑 最近通过pecl安装mongodb扩展时,提示以下错误 ...... configure: error: Cannot find OpenSSL's <evp.h> ...... 根据提示,通过以下方式安装openssl后,再次使用pecl安装mongodb,仍然是提示同样的错误 brew install openssl 问题解决 通过pecl安装的路走不通,还是得通过简单暴力方式解决,使用源码包通过编译方式进行安装 1.编译安装前先安装autoconf brew install aut…
ubuntu安装nginx时提示error: the HTTP rewrite module requires the PCRE library 须要安装pcre包. sudo apt-get update sudo apt-get install libpcre3 libpcre3-dev 你可能还须要安装 sudo apt-get install openssl libssl-dev…
在网上直接下载别人编译好的Qt库,为自己使用省了不少事.但往往也会遇到些问题,其中Qt version is not properly installed,please run make installQt没有被正确安装,请运行make install这个问题是比较常见的一个.网上看了一个帖子,终于明白原因所在,原来是qmake.exe是在Qt安装编译时生成的,里面内嵌了Qt相关的一些路径.如果直接拷贝过来使用,自己的路径结构与原来不同,则Qt库就不能正常使用.提示就是Qt version is…
在Ubuntu 12.4.1 X64 位下编译安装PHP时提示 configure: error: Cannot find OpenSSL's libraries 确认已安装过 openssl.libssl-dev 包,还是会提示该错误: 解决办法: root@test2:~/php-5.3.27# find / -name libssl.so      输出结果为: /usr/lib/x86_64-linux-gnu/libssl.so 初步判断它可能只会在 /usr/lib/ 下寻找 lib…
1 编译安装nginx提示如下 ./configure: error: C compiler cc is not found 2 解决办法 yum -y install gcc gcc-c++ autoconf automake make…
Linux上安装Apache时,编译出现错误: checking for APR... no configure: error: APR not found .  Please read the documentation 安装APR,下载所需软件包,如果此时计算机可以上网,执行命令下载文件: wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz wget http://archive.apache.org/dist/apr/apr-u…
今日编译apache时出错: #./configure --prefix……检查编辑环境时出现: checking for APR... noconfigure: error: APR not found .  Please read the documentation 解决办法: 1.下载所需软件包: wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz wget http://archive.apache.org/dist/apr/…
安装python的时候出现如下的错误: [root@master ~]#./configure --prefix=/usr/local/python3.6 checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for --enable-universalsdk... no checking for --with-universal-archs.…
安装python的时候出现如下的错误: [root@master ~]#./configure --prefix=/usr/local/python3.6 checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnuchecking for --enable-universalsdk... nochecking for --with-universal-archs...…
Python结合Pywinauto 进行 Windows UI 自动化,安装pywinauto时遇到的一些问题: 解决方法:很明显是链接超时国外网站你懂的V_P_N吧,直接通过报错信息的链接复制到浏览器地址栏去下载对应的文件是个压缩包,放到python环境的C:\Python35\Lib\site-packages下,继续执行python setup.py install 就行了 以上方法如果还是解决不了建议用这个命令去安装,国内的镜像比较快: pip install -i https://py…
linux下安装安装pcre-8.32./configure --prefix=/usr/local/pcre 出现以下错误configure: error: You need a C++ compiler for C++ support 正解 yum install -y gcc gcc-c++…
要安装 readline , readline-dev 开发包,要么使用 --without-readline 选项关闭 readline 功能. #yum install readline; #yum install readline-dev; readline 也就是命令行编辑,关闭的话,你直接用psql 就不能编辑命令行,如果输错指令,不能回滚命令历史记录,只能手工重新输入. 在安装postgreSQL的过程中遇到一个问题,在执行 configure 过程中报以下错误,configure:…
在windows下安装nodejs时老是报错: The installer has encountered an unexpected error installing . 有三种方法可以尝试: "Run as administrator"取得管理员权限运行安装文件.linux下可以在命令行前加上sudo. 打开电脑左下角[开始]菜单,在弹出的菜单栏的搜索栏中输入 cmd : 在上方列表中,右键点击[cmd]选择[以管理员运行]: 进入命令行界面,找到需要安装的程序的目录,复制地址栏里…
今天从Apache官网上http://httpd.apache.org/下载httpd web服务器,由于我的虚拟机上之前安装过,我先yum remove httpd进行卸载,然后重新安装.我采用的是源码安装,先进行./configure --prefix=/usr/local/apahce  --enable-so ,提示以下错误: configure: error: APR not found. Please read the documentation. 解决办法 wget http://…
用安装python模块出现error: command 'gcc' failed with exit status 1 问题: gcc编译缺少模块 解决方法: yum install gcc libffi-devel python-devel openssl-devel…
采用.net 4.0框架开发的一个桌面应用程序在某学校的一体机(Windows7的32位操作系统)上做安装部署时抛出异常,安装程序回滚,多次尝试仍不成功. Error 1001. 在初始化安装时发生异常 System.BadImageFormatException:未能加载文件或程序集”....“或它的某一个依赖项. 异常截图如下: 该程序在Windows7的64位操作系统环境下安装部署均正常,应用程序的生成目标平台为了兼容32位机器,选用的是X86 项目的安装工程的属性程序集配置如下: 项目安…
转自: http://www.cnblogs.com/Anker/p/3355573.html 今天从Apache官网上http://httpd.apache.org/下载httpd web服务器,由于我的虚拟机上之前安装过,我先yum remove httpd进行卸载,然后重新安装.我采用的是源码安装,先进行./configure --prefix=/usr/local/apahce  --enable-so ,提示以下错误: configure: error: APR not found.…
本文转载自:http://blog.csdn.net/a567890k/article/details/52956798 最近编译Android6.0时经常出现以下错误 临时解决方法: Building with Jack: out/target/common/obj/APPS/Launcher3_intermediates/with-local/classes.dexERROR: Security problem, see Jack server log (/tmp/jack-weilan/j…
keepalived执行./configure --prefix=/usr/local/keepalived时报错:configure: error: Popt libraries is required出现此错误的原因:未安装popt的开发包 解决方法:yum install popt-devel安装好popt的开发包. 重新./configure 即可. 本篇文章转载自 http://blog.csdn.net/yabingshi_tech/article/details/48002289…
./configure --prefix=/usr/local/pgsql ..... configure: error: zlib library not foundIf you have zlib already installed, see config.log for details on thefailure.  It is possible the compiler isn't looking in the proper directory.Use --without-zlib to…
centos 6.8 32位系统下,安装php.5.6.11是出现这个错误 解决办法: 1 2 3 4 vim /etc/ld.so.conf.d/local.conf     # 编辑库文件 /usr/local/lib                       # 添加该行 :wq                                  # 保存退出 ldconfig -v                          # 使之生效 注意事项: 这里添加的库文件路径一定要和你…
无论是CMake2.84 还是当前最新的CMake2.87都可能会出现这种错: 查遍国内外的网上都没有给出可行办法,结果还是自己解决了 现把出错原因和解决办法如下:出错原因:因是英文版本,通常安装没有看说明,按默认的安装而"下一步"再下一步,结果是在安装中要选择你所使用的编程系统的,如:Vs2008,vs2010等,如果当前安装的默认值不是你当前用的版本就且在使用时不注意一些细节就会出错,且出错在于当前设置的输出目录已存在时解决办法: 第一种:卸载并重装Cmake,重装时记得选择语言的…
在Debian下安装Oprofile 重要:应该使linux内核选项支持 在 .config 文件中设置CONFIG_PROFILING=y和CONFIG_OPROFILE=y. 重新编译,烧写.使用apt-get update && apt-get install oprofile oprofile-gui 或手工安装直接从网上下载oprofile-0.9.8. Oprofile默认需要这些库的支持: 由GNUmaintain的libbfd.so及libiberty.so 编译和安装最新…
CentOS 7 下 安装 nginx 执行配置命令 ./configure 时提示以下错误: 解决: 执行以下命令: yum -y install gcc gcc-c++ autoconf automake make   上述安装成功后在尝试安装 显示安装成功…