在确保你使用mkdir()不是创建两个文件层级以上时。就不是你程序的问题,而是Linux的读写权限问题,解决方法就是将你的项目提权为777,可参照下面的链接 mkdir解决博客 但是当你将项目权限提升为777后还是报这个…
标签:编程问答
Git一个关于Push失败的两种解决方案
远程创建了含有Readme的仓库, 本地初始化并添加了远程仓库后, push却失败了, 出现提示: $ git push origin dev To https://git.oschina.net/erchoc/lara…
homebrew 安装踩坑解决过程
Homebrew 由于国外镜像不FQ的安装的话基本就会被qiang,所以按照官网的方式去安装会有error: RPC failed的错误; 可以将安装的文件下载到本地,通过修改国内源去安装; 下载源到本地 curl -f…
xcode编译报错unknown error -1=ffffffffffffffff Command /bin/sh failed with exit code 1
升级完xcode9.1之后,编译项目出现如下错误: CI今日构建时报出如下错误: /Users/xxx/Library/Developer/Xcode/DerivedData/Snowball-ebllohyukujrn…
java.net.UnknownHostException 未知的名称或服务
原来博客地址:https://blog.csdn.net/wallace1992/article/details/77815647 这两天在做一个项目时用到了dubbo和zookeeper,在安装配置时,虽然…
[Angular] Fetch non-JSON data by specifying HttpClient responseType in Angular
By default the new Angular Http client (introduced in v4.3.1) uses JSON as the data format for communicat…
ubuntu 常见错误--Could not get lock /var/lib/dpkg/lock
出现这个问题可能是有另外一个程序正在运行,导致资源被锁不可用。而导致资源被锁的原因可能是上次运行安装或更新时没有正常完成,进而出现此状况,解决的办法其实很简单: 在终端中敲入以下两句 sudo rm /var/cache…
No module named 'matplotlib.finance'
这个问题困了好久,网上搜索不得其解 后来,把模块改成 from mpl_finance import candlestick_ohlc 就没有报错了 希望后面顺利
日常踩坑-Could not load org.apache.catalina.loader.WebappClassLoader. The eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact.
今天webapp项目预发布tomcat启动失败,检查tomcat/logs/catalina.xxxx.log发现如下错误 Nov 15, 2017 5:05:28 PM org.apache.catalina.load…
相对正经的ffmpeg及X264插件安装
ffmpeg以及x264插件已经安装过很多次,环境不同遇到问题不同基本根据错误都能解决,今天的一台机子原装过ffmpeg因为业务需要扩展下x264用来预处理视频,根据以往经验下包解压编译配置再重新安装ffmpeg,今天一…
message [Failed to convert property value of type [java.lang.String] to required type [java.util.Date] for property
springmvc前台字符串,后台Date类型字段。时间强转失败 数值:18年12月31日 15:43:21 解决方法,给时间字段加注释 @DateTimeFormat(pattern = "yy年MM月dd日 HH:m…
[Javascript] AbortController to cancel the fetch request
We are able to cancel the fetch request by using AbortController with RxJS Observable. return Observable.creat…