上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 32 下一页
摘要: pip包依赖关系可视化 https://blog.csdn.net/zzy979481894/article/details/112385122 阅读全文
posted @ 2021-12-16 20:45 michaelchengjl 阅读(104) 评论(0) 推荐(0) 编辑
摘要: intel AMD 平台架构 https://www.mydrivers.com/zhuanti/tianti/cpu/ https://blog.csdn.net/qq_27825451/article/details/89225571 https://jishuin.proginn.com/p/ 阅读全文
posted @ 2021-12-12 18:14 michaelchengjl 阅读(101) 评论(0) 推荐(0) 编辑
摘要: shell 将文件名读入数组 我想得到一个文件列表,然后将结果读入一个数组,其中每个数组元素对应一个文件名。 shopt -s nullglob array=(*) array2=(file*) array3=(dir/*) 如果没有匹配项,则nullglob选项会使数组为空。 以下将在当前目录中创 阅读全文
posted @ 2021-12-10 18:38 michaelchengjl 阅读(1525) 评论(0) 推荐(0) 编辑
摘要: pytest-命令行传入自定义的参数到测试文件中 conftest.py import pytest def pytest_addoption(parser): parser.addoption("--aa", action="store", default='', help="the input 阅读全文
posted @ 2021-12-10 15:21 michaelchengjl 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 使用minio搭建私有化对象存储服务 MinIO简介 MinIO 是一款基于Go语言的高性能对象存储服务,在Github上已有19K+Star。它采用了Apache License v2.0开源协议,非常适合于存储大容量非结构化的数据,例如图片、视频、日志文件、备份数据和容器/虚拟机镜像等。 本文将 阅读全文
posted @ 2021-12-07 14:31 michaelchengjl 阅读(573) 评论(0) 推荐(0) 编辑
摘要: Python实现在不同Linux主机之间拷贝文件 最近在写Python脚本的时候,需要一个功能就是使用ssh登录Linux主机A,然后在主机A上执行scp命令将主机上的文件自动给拷贝到Linux主机B上。远程登录使用pycrypto和paramiko模块实现了,但是在执行scp命令的时候需要输入密码 阅读全文
posted @ 2021-11-24 17:16 michaelchengjl 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 解决拉取github仓库报错“gnutls_handshake() failed”问题 gnutls_handshake() failed: The TLS connection was non-properly terminated. 最近为新配置的虚机拉取库,但是从 GitHub 拉取库总是出问 阅读全文
posted @ 2021-11-13 19:55 michaelchengjl 阅读(622) 评论(0) 推荐(0) 编辑
摘要: Python与c/c++混合编程 https://www.cnblogs.com/leoking01/p/14591169.html https://github.com/shenghuofei/c-python https://blog.csdn.net/weixin_41521681/artic 阅读全文
posted @ 2021-11-10 14:01 michaelchengjl 阅读(48) 评论(0) 推荐(0) 编辑
摘要: numpy-tutorial numpy中比较两个数字的断言函数 assert_allclose比较数组相等 与assert_array_equal不同的是,该函数有atol(绝对容差限)、rtol参数(相对容差限)。比如对于数组a,b,则将测试是否满足 ∣ a − b ∣ ≤ ( a t o l 阅读全文
posted @ 2021-11-10 14:00 michaelchengjl 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Pandas 数据分析资料 https://github.com/zhouyanasd/or-pandas https://www.pypandas.cn/docs/getting_started/ https://oicebot.github.io/2018/09/05/30-mins-into- 阅读全文
posted @ 2021-11-10 11:10 michaelchengjl 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 32 下一页