上一页 1 2 3 4 5 6 7 8 ··· 19 下一页
摘要: rpm -ivh xxx i代表安装、v代表可视化安装、h代表安装的时候显示进度。 rpm -ivh *.rpm --force --nodeps nodeps的意思是忽视依赖关系 阅读全文
posted @ 2022-07-14 14:54 半日闲1 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 导库: import paramiko 报错:ImportError: cannot import name 'NoReturn' 原因:python==3.6.0 版本过低 解决:升级python版本即可 阅读全文
posted @ 2022-07-13 23:01 半日闲1 阅读(1623) 评论(0) 推荐(0) 编辑
摘要: 函数里面写函数,在函数之外无法调用 def fun(): def f(): print("*******") def f2(): print("!!!!!!!") f() f2() fun() *******!!!!!!! 阅读全文
posted @ 2022-07-01 15:39 半日闲1 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 解决:查看守护进程错误日志发现默认docker存储空间不足 dockerd --log-level error 阅读全文
posted @ 2022-05-27 23:47 半日闲1 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 报错: ld: cannot find -lstdc++ ld: cannot find -lgcc_s 解析: 命名规则是:lib+库名(gcc_s)+.so 原因: 1 系统没有安装相对应的lib2 相对应的lib版本不对3 lib(.so档)的symbolic link 不正确,没有连结到正确 阅读全文
posted @ 2022-05-26 22:58 半日闲1 阅读(191) 评论(0) 推荐(0) 编辑
摘要: cmake 出现 The CXX compiler identification is unknown 原因:cmake找不到C++的编译器(比如找不到g++) 解决:安装g++ yum list gcc-c++ yum install gcc-c++.x86_64 阅读全文
posted @ 2022-05-26 22:45 半日闲1 阅读(1523) 评论(0) 推荐(0) 编辑
摘要: 可能原因:动态文件的目录不在系统默认的库搜索目录中。 此时需要:加入动态库文件所在的目录:执行vi /etc/ld.so.conf,在"include ld.so.conf.d/*.conf"下方增加"/usr/local/lib"。 保存后,在命令行终端执行:/sbin/ldconfig -v;其 阅读全文
posted @ 2022-05-26 22:39 半日闲1 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 报错:2002-Catn't connect to server 192.168.188.128(10060) navicat 连接docker mysql container 出现问题 可能原因:电脑重启的时候没有正常关闭虚拟机,docker容器导致 此时若起一个container会出现:WARN 阅读全文
posted @ 2022-05-21 00:17 半日闲1 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 问题:使用pandas 将 csv文件转换为excel文件时,某些单元格出现绿色箭头警告 原因:数字仍然以文本形式存储 解决:将文本形式的数字单元格类型改为数字型 阅读全文
posted @ 2022-04-23 23:22 半日闲1 阅读(47) 评论(0) 推荐(0) 编辑
摘要: https://smallpdf.com/cn/result#r=e3c848bcc1ee0864a7988827b5303ffb&t=pdf-to-excel 阅读全文
posted @ 2022-03-21 14:16 半日闲1 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 19 下一页