mac电脑直接: rm -rf node_modules rm package-lock.json npm install npm install prettier@~1.12.1 执行完这四个命令,保证ok win电脑 先手动卸载了本地的prettier 然后再npm install prettier@~1.12.1 原因是因为mac的node_moduls中的包命名直接为该组件的名字,而win要携带版本号所以mac执行npm install prettier时会覆盖原来的版本,而win则不会…
出错提示如下: ERROR Failed to compile with errors :: error in ./src/App.vue Module build failed: Error: No parser and no file path given, couldn't infer a p arser. at normalize (D:\works\:) at formatWithCursor (D:\works\:) at D:\works\node_modules\prettier…
ERROR Failed to compile with 2 errors 12:00:33 error in ./src/App.vue Module build failed: Error: No parser and no file path given, couldn't infer a parser. at normalize (C:\Users\admin\Desktop\222\demo\node_modules\prettier\index.js:7051:13) at form…
命令:scp  -P1234  /data/aa   root@192.0.0..0:/data 文件结构:/data/aa/yearmonth=2015-09 报错:not a regular file 报错原因:这是一个文件夹,而不是文件,因此要加参数-r 正确命令:scp -r -P1234  /data/aa   root@192.0.0..0:/data…
sqlplus以管理员方式接入数据库,启动时出现报错,如下: > sqlplus "/as sysdba" SQL> startup ...... ORA-01157: cannot identify/lock data file 8 - see DBWR trace file ORA-01110: data file 8: '/tmp/test.dbf' 查看数据库日志文件alert_$ORACLE_SID.log,存在对应报错信息: Errors in file ...…
你的位置:首页 > Java编程 > eclipse发布项目报错:Multiple Contexts hava a path of “/xxx“ eclipse发布项目报错:Multiple Contexts hava a path of “/xxx“ Java编程 超过3073次围观 今天在用Eclipse开发项目的时候报错了: Problem Occurred 'Publishing to local tomcat at localhost...'has encountered a pro…
场景:在写两台ubuntu之间需要交互式登录操作shell脚本.就是在ubantu A上,做点什么事,然后远程到ubuntu B上进行操作,shell脚本存放在ubuntu A上. 我遇到这个报错:not a regular file,我在ubantu A上查了老半天,没有问题,是ubantu B上出了问题记录下. 报错如下:not a regular file   解决方法: 1.在ubuntu B上创建的目录,赋予777权限,不用-r参数,否则会报权限错误. chmod 777 /local…
抓取https网页时,报错sun.security.validator.ValidatorException: PKIX path building failed 解决办法 原因是https证书问题,java抓取时忽略掉证书才能访问.jsoup在调用前先执行下以下忽略证书请求就可以了. try { //先调用下忽略https证书的再请求才可以 HttpsUrlValidator.retrieveResponseFromServer(url); doc = Jsoup .connect(url)…
报错 xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 查询通用的做法是在terminal 执行: xcode-select --install 由于macOS  升级,打开ieda 还是报错,上面的解决办法还是不行 报错: 下午3:57 Сann…
.bin/mysqld --initialize-insecure --basedir=xxx --datadir=xxx 然后 .bin/mysqld_safe --defaults-file=xxx --user=mysql & 抛错: InnoDB: auto-extending data file ./ibdata1 is of a different size 640 pages (rounded down to MB) than specified in the .cnf file:…