关闭idea 打开项目所在位置并cd .idea 修改scala_compiler.xml文件 删除掉参数行包含-make:transitive 保存后退出编辑并重启idea打开项目…
1 问题描述: ubuntu环境下用eclipse+maven开发Scala的时候出现错误:scalac error: bad option: '-make:transitive' on mvn package via command line 2 解决方法: (1)打开pom.xml,删除 <parameter value="-make:transitive"/> (2)添加dependance <dependency>             <gro…
MacOS 上安装 R 包 install.packages("data.table") 后面提示是否安装需要编译的版本: Do you want to install from sources the package which needs compilation?y/n 选择了 y 之后,报错 clang: error: unsupported option '-fopenmp' 网上找到的解决方法是: 安装 clang-omp brew install clang-omp 但是提…
不多说,直接上干货!  问题详情 当出现这类错误时是由于版本不匹配造成的 Information:// : - Compilation completed with errors and warnings in 3s 910ms Error:scalac: error while loading JUnit4, Scala signature JUnit4 has wrong version expected: 5.0 found: 4.1 in JUnit4.class Error:scala…
M2Crypto 是最完整的为 Python 包装 OpenSSL 的 RSA,DSA,DH,EC,HMACs,消息摘要,对称密码算法(包括AES)的一个库工具.而自从 M2Crypto 升级到版本 0.22.5 后,用 pip install M2Crypto 命令来安装 M2Crypto 时总是会失败.在没有升级到此版本之前,使用 pip 安装则是没有问题的.下面来找找原因.系统环境:CentOS 6.7 x86失败关键字:swig 失败现象: swigging SWIG/_m2crypto…
今天在用vs2015编译ogre 1.6.5的代码时发生连接错误 LINK : fatal error LNK1117: syntax error in option 'VERSION:1.6.5'. 解决:On the Settings (Project > Settings > Linker) removing the "Version" entry. 没有深入搞懂为什么,先Mark下. 参考: http://stackoverflow.com/questions/20…
公司数据库前一版本是部署在windows上面的,由于业务需要,迁移到linux,之前一段脚本在windows下使用定时任务执行正常. mysqldump -uzzz -pxxxx --opt --default-character-set=utf8 -e --triggers -R --hex-blob --flush-logs -x db_name> D:/数据备份/111.sql 现在把mysql服务器指向linux,导出的时候就报错了 mysqldump: [ERROR] unknown…
解决Unknown error: to the dx.jar the SDK folder!最近渐渐迁移到Android Studio来了,更新过Android SDK Manager里的东西后,打开Eclipse Run工程报错.查找各种解决办法,发现: Android SDK Build-tools的版本已经高于Android SDK Platform-tools版本了,见图 由于Android Studio有时必须用高版本的Build-tools,所以简单的删除高版本的Build-tool…
Error:scalac: Error: org.jetbrains.jps.incremental.scala.remote.ServerException reason:JDK与Scala的版本不匹配.…
1.安装 sudo apt-get install libeigen3-dev 2. 解决 fatal error: Eigen/Core: No such file or directory 当调用 eigen 库时,会报错:fatal error: Eigen/Core: No such file or directory 这是因为 eigen 库默认安装在了 /usr/include/eigen3/Eigen 路径下,需使用下面命令映射到 /usr/include 路径下 sudo ln…
解决错误 CS1617 Invalid option '7.1' for /langversion; must be ISO-1, ISO-2, Default or an integer in range 1 to 6. 右键项目-->属性-->生成-->高级-->语言版本选择你配置文件所对应的版本. 或者: 右键项目--->管理nuget程序包-->查找安装或者更新 Microsoft.Net.Compilers…
log4j.properties 的配置文件中: log4j.appender.stdout.layout.ConversionPattern =  %d{ABSOLUTE} %5p %c{ 1 }:%L - %m%n 把{1}中的空格去掉.…
cacti制图报下面提示 if (isset($rrdborder) && $rrdversion >= 1.4) { $graph_opts .= "--border $rrdborder " ; } 所以你应该有类似下面的东西 // if (isset($rrdborder) && $rrdversion >= 1.4) { // $graph_opts .= "--border $rrdborder " ; // }…
刚开始学习使用redis数据库,在执行删除命令时,提示了我这么一个错误: 错误提示 (error) MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report er…
执行以下代码,生成唯一的UID $fp = popen("/xxx/bin/tools/uuidgen system", "r");// $uid = fread($fp, 40960); pclose($uid); 问题:返回结果$uid为空.实际上执行popen函数后能够返回内容 resource(39) of type (stream). resource popen ( string $command , string $mode ) 参数:$command…
问题重现: Error: JAVA_HOME is not defined correctly. We cannot execute :/usr/lib/jvm/java-7-oracle 问题分析: 这是因为Java没有指定 JAVA_HOME 路径造成的. 解决办法: 配置 JAVA_HOME 的环境,终端输入: export JAVA_HOME=/usr/lib/jvm/java--openjdk-amd64…
repo sync同步时提示出错:          error: .repo/manifests/: contains uncommitted changes 解决方法: 1.cd 进入.repo/manifests cd .repo/manifests 2.执行如下三条命令 git stash git clean -f -d 3.重新开始同步 repo sync -c -j4 --no-clone-bundle…
问题重现: Install: /home/dinphy/sm/out/target/product/ido/system/lib/libdl.so java -Xmx3500m -jar /home/dinphy/sm//android.jar nothing matches overlay file default_wallpaper.jpg, for flavor hdpi-v4 nothing matches overlay file default_wallpaper.jpg, for…
问题 在Centos7上编译安装openssl后,运行openssl version出现如下错误: openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory 这是由于openssl库的位置不正确造成的. 解决方法: 在root用户下执行: ln -s /usr/local/lib64/libssl.so.1.1 /u…
一,详细问题描述 clang: error: no such file or directory: 'xxx/src/GGBaCollectionViewCell.m' clang: error: no input files 二,问题分析过程 从 git 上下载下来就报了这个 bug, 本以为是同事的问题,问了一番竟然不是,而且重新克隆一下也有问题,然后仔细找了一下error 中的路径,结果那个路径下还真没有这个.m 文件,就导入这个.m 文件.......可是导入之后,还有错误,于是就上网搜…
重新启动服务器,访问web服务发现无法浏览啦!登陆服务器之后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)错误,进到logs文件发现的确没有nginx.pid文件 [root@localhost sbin]# ./nginx -s reload nginx: [error]…
问题概述: 在启动Android模拟器时出现以下错误,导致启动失败. ERROR: the user data image is used by another emulator. aborting. 原因: 系统判断你当前已经启动了另外一个emulator,可能是某些正常操作或异常退出造成的. 解决方法: 进入你avd目录下: 如:C:\Documents and Settings\Administrator\.android\avd\android2.3.avd 删除以lock结尾的文件夹.…
今天在64位centos5.6系统上编译PHP5.2.17报错 checking for MySQL support... yes, shared checking for specified location of the MySQL UNIX socket... no checking for the location of libz... no checking for MySQL UNIX socket location... /var/lib/mysql/mysql.sock conf…
在使用 deamon@deamon-H55M-S2:/usr/bin$ mysqladmin -u root -p shutdown 关闭MySQL之后试图通过: deamon@deamon-H55M-S2:/usr/bin$ mysqld_safe & 来重启服务器,发现重启失败,显示权限不够: /usr/bin/mysqld_safe: 548: /usr/bin/mysqld_safe: cannot create /var/lib/mysql/mysqld_safe.pid: Permi…
在安装MySQL 5.6.30时,安装完成后,后台日志报如下警告信息:2016-05-27 12:25:27 7fabf86f7700 InnoDB: Error: Table "mysql"."innodb_table_stats" not found.2016-05-27 12:25:27 7fabf86f7700 InnoDB: Error: Fetch of persistent statistics requested for table "hj…
重新启动服务器,访问web服务发现无法浏览,登陆服务器之 后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() "/usr/local/nginx1.9.1/logs/nginx.pid" failed (2: No such file or directory)错误,进到logs文件发现的确没有nginx.pid文件   root@timeless-HP-Pavilion-g4-Notebook-PC:/home/t…
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) 据说这个问题的原因很多,当然,我自己这个问题我是清楚的,就是mysql.sock的位置所致,一个是PHP要求的,一个是MYSQLD定义的,一个是MY.CONF指定的...SO.... 暂时不能统一的话,用软链接LN -S命令解决吧.. 方案5      摘要:解决不能通过mysql.sock连…
Phonegap  解决错误: Alert [ERROR]Error initializing Cordova:Class not found 发现bug后找原因   网上说是  因为找不到     res/xml  文件夹下的  config.xml 文件; 但我有这个config.xml 我想了一下 是不是因为没有找到指定的config.xml中的  feature配置 最后找到了   是因为我调用系统的 Device 信息 没有加标签 <!-- 设备 --> <feature na…
安装最新版本Emqtt,参照官方文档安装后,执行报错: Linux error while loading shared libraries libsctp.so.1: cannot open shared object file: No such file or directory 从互联网上找到了一些文章, 解决了我的问题,这里整理贴一下,类似的问题应该都可以参照解决. 1.先在本地查找一下文件 命令:wheris libsctp.so.1 先查找一下本地是否存在文件,如果存在的话,直接跳到…
重新启动服务器,访问web服务发现无法浏览啦!登陆服务器之后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)错误,进到logs文件发现的确没有nginx.pid文件   [root@localhost sbin]# ./nginx -s reload nginx: [erro…