AndroidStudio新建项目报错build failed 报错信息 org.gradle.initialization.ReportedException: org.gradle.internal.exceptions.LocationAwareException: A problem occurred configuring root project 'Test1'. Caused by: org.gradle.internal.exceptions.LocationAwareExcep…
今天使用VS2008编译项目时报错: The OutputPath property is not set for this project.  Please check to make sure that you have specified a valid Configuration/Platform combination.  Configuration='Debug'  Platform='x86' 解决办法如下: 1.选中编译失败的项目,右键点击卸载项目 2.选中卸载后的项目,右键点击…
创建了一个maven项目,报错 Errors occurred during the build. Errors running builder 'Maven Project Builder' on project 'BCPS'. Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be res…
一个是缺少mysql的开发包 sudo apt-get install libmysqld-dev 还有一个报错如下 debian ExecJS::RuntimeUnavailable: Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes. 要么自己下载nodejs的包,要么在gemfiles里面添加 gem 'execjs'…
烦人的版本兼容问题 没有使用sts3.7.3系统内嵌的maven3.3.3,调整为稍高版本的maven3.5.2,懒得修改配置了. 升级eclipse插件吧. Eclipse,Help -> Installation Details 找到插件m2e connector for mavenarchiver pom properties,显示版本为0.17.0.201502101659-signed-20150525172209,更新(Update) 找到了更高版本0.17.2.2016092520…
在新建cocos2d-x以后,执行发现下面错误: ld: -pie can only be used when targeting iOS 4.2 or later clang: error: linker command failed with exit code 1 (use -v to see invocation) 如图所看到的: 这时候,选中左上角的项目文件 ------>选中General ---------> DeploymentInfo 中 ------------->…
出现该情况的原因:是删除的时候并没有删除干净,点击如下位置会清除Idea的本地代码历史,然后重新创建项目就可以了…
"Error: this template attempted to load component assembly 'NuGet.VisualStudio.Interop, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.". 解决: I believe you do not have NuGet Package Manager extension installed. If not, you ca…
查了一下nuxt的github才知道是node.js版本太低造成的,据说升级到8.6以上就可以了(本人直接升了9.9) node_modules\nuxt\lib\core\middleware\nuxt.js:72 const policies = this.options.render.csp.policies ? {...this.options.render.csp.policies} : null ^^^ SyntaxError: Unexpected token ... at cre…
解决方案: 找到主目录的.csproj文件,用文字编辑器打开你找到它找到 <Reference Include="System.Web.WebPages" />  <Reference Include="System.Web.Helpers" /> 将上述两个代码替换为: <Reference Include="System.Web.WebPages, Version=1.0.0.0,Culture=neutral, Publ…