码迷,mamicode.com
首页 >  
搜索关键字:error: xz compression not available    ( 2819个结果
linux FREE命令
total=used+free+buff/cache。 buff/cache我的理解是在内存中有值,然后也缓存到文件系统中了。如果需要的话,内存中占用的空间可以立即被释放。 理论上available=free+buff/cache,是可以被使用的内存量。 但是available<free+buff/ ...
分类:系统相关   时间:2020-06-28 22:38:09    阅读次数:71
Centos7下安装Mysql(阿里云)
Centos下安装mysql 先写个坑 centos7自带的是MariaDB,而不是MySQL,所以执行yum install mysql-server时会报错如下 No package mysql-server available. Error: Nothing to do 解决方法:添加mysq ...
分类:数据库   时间:2020-06-28 15:09:58    阅读次数:80
CoreDNS解析失败排查方式
1. 查看coreDNS是否正常启动 kubectl -n kube-system get po|grep core 2. 如果不正常,并确定yaml配置无误,可将coreDNS pod通过修改deployment yaml 添加 nodeName尝试调度到其他节点,排查是否为node原因,或直接通 ...
分类:其他好文   时间:2020-06-27 11:47:34    阅读次数:388
1026 Table Tennis (30分)(模拟)
1026 Table Tennis (30分) A table tennis club has N tables available to the public. The tables are numbered from 1 to N. For any pair of players, if the ...
分类:其他好文   时间:2020-06-27 00:32:05    阅读次数:70
C# NPOI read excel files include xls and xlsx
1.Install-package npoi; 2.Add necessary namespace as below. using System.IO;using System.IO.Compression;using NPOI.HSSF.UserModel;using NPOI.SS.UserMo ...
分类:Windows程序   时间:2020-06-26 19:54:10    阅读次数:76
安装第三方库openpyxl时,报错:You are using pip version 19.0.3, however version 20.2b1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.
昨晚在安装第三方库openpyxl时,执行pip install openpyxl后,报错:You are using pip version 19.0.3, however version 20.2b1 is available. You should consider upgrading via ...
分类:编程语言   时间:2020-06-26 14:22:22    阅读次数:92
selenium三大切换,三大等待
三大等待 强制等待 time.sleep() # 使用time模块强制进行等待,单位s 隐式等待 driver.implicitly_wait(30) # 等待元素直到超时报异常 显式等待 # 第一步:创建一个等待计时器对象 wait = WebDriverWait(driver, 30, 0.5) ...
分类:其他好文   时间:2020-06-26 12:46:03    阅读次数:60
Vue手机定位
//APP定位 getAddress() { console.log(77777); if (navigator.geolocation) { navigator.geolocation.getCurrentPosition( this.showPosition, this.showError ); ...
分类:移动开发   时间:2020-06-23 17:25:29    阅读次数:176
大数据Linux常用命令4
1.系统常用检查命令 1 磁盘 df -h 2 内存 free -m 3 负载 top 4 5 [hadoop@bigdata ~]$ free -m 6 total used free shared buff/cache available 7 Mem: 7823 222 6229 257 137 ...
分类:系统相关   时间:2020-06-23 15:37:42    阅读次数:82
Python安装pip时, 报错:zipimport.ZipImportError: can't decompress data; zlib not available
解决办法: 1、安装依赖zlib、zlib-devel 2、重新编译安装Python 具体步骤: 1 到python安装目录下,运行./configure 2 编辑Modules/Setup文件 vim Modules/Setup 找到下面这句,去掉注释 #zlib zlibmodule.c -I( ...
分类:编程语言   时间:2020-06-23 14:58:19    阅读次数:56
2819条   上一页 1 ... 9 10 11 12 13 ... 282 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!