1、报错如下: 2、此时你执行npm run dev / npm run build 会报错如下 npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! vue@1.0.0 dev: `webpack-dev-server --inline --progre ...
分类:
其他好文 时间:
2020-03-14 10:57:32
阅读次数:
62
1,OSError: Unable to open file (file locking disabled on this file system (use HDF5_USE_FILE_LOCKING environment variable to override), errno = 38, er ...
分类:
系统相关 时间:
2020-03-12 19:10:07
阅读次数:
229
输入npm install 报以下错误 npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! node-sass@4.13.1 postinstall: `node scripts/build.js` npm ERR! Exit status 1 np ...
分类:
Web程序 时间:
2020-03-08 20:19:43
阅读次数:
295
1.域名系统 程序中只使用主机名和服务名的好处是,如果IP或端口变化,只需要改变映射关系,不需要重新编译程序。 1.1 资源记录 DNS的条目为资源记录,有用的项如下: A IPv4地址 AAAA IPv6地址 CNAME 规范名字 如: ftp.unpbook.com 的 CNAME 为 linu ...
分类:
其他好文 时间:
2020-03-08 09:56:33
阅读次数:
87
ERROR: Could not find a valid gem ‘redis‘ (>= 0), here is why:
Unable to download data from https://rubygems.org/ - SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A (https://rubygems.org/latest_specs.4.8.gz)
Error fetching http://ruby.taobao.org/:
server did not return a valid file (http://ruby.taobao.org/specs.4.8.gz)
Error fetching https://rubygems.org:
SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A (https://rubygems.org/specs
分类:
其他好文 时间:
2020-03-06 19:44:22
阅读次数:
72
1. fork系统调用 pid_t fork(); 该函数的每次调用都返回两次,在父进程中返回子进程的PID,在子进程中则返回0. 该返回值是后续代码判断当前进程是父进程还是子进程的依据。fork调用失败时返回-1,并设置errno。 fork函数复制当前进程,在内核进程表中创建一个新的进程表项。新 ...
分类:
系统相关 时间:
2020-03-01 17:09:20
阅读次数:
99
查看D目录下的文件: 使用os模块创建目录,代码如下: path = r"D:\a\b" isExists = os.path.exists(path) print(isExists) if not isExists: # 路径不存在,即文件名不存在 os.mkdir(path) View Code ...
分类:
其他好文 时间:
2020-02-28 22:21:52
阅读次数:
351
学习python的文件处理,刚开始打开文件,代码如下 f = open('test_file.txt', 'r', encoding='UTF-8')RES = f.readlines()print('读取的内容%s' % RES)f.close()这里运行报错FileNotFoundError: ...
分类:
编程语言 时间:
2020-02-28 18:43:21
阅读次数:
211
爬虫数据存储——安装docker和ElasticSearch(基于Centos7) 先决条件 操作系统要求 要安装Docker Engine Community,您需要一个CentOS 7的维护版本。不支持或未测试存档版本。 该centos extras库必须启用。默认情况下,此存储库是启用的,但是 ...
分类:
其他好文 时间:
2020-02-25 14:41:20
阅读次数:
78
在从库上,使用show slave status,可以查看主从复制状态。 包括主库定制,IO thread、 SQL thread连接状态,以及bin log位置等。 Master_Info_File 其中的选项 Master_Info_File 表示master.info 信息的位置,可以是文件, ...
分类:
其他好文 时间:
2020-02-25 00:32:17
阅读次数:
105