摘要: 【redis手册】【公共方法】key方法keys * 查看所有keykeys *_* 正则匹配exists 判断key是否存在 【字符串】setgetmsetmgetsetnx 分布式锁setex 设置过期时间del append 追加 strlen 获取长度 【list列表】lpushrpushl 阅读全文
posted @ 2024-03-24 22:59 三人行必有我师娘 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 获取修复文件get-pip.py 访问获取修复文件 找到对应版本文件的下载链接,例如python3.5,https://bootstrap.pypa.io/pip/3.5/get-pip.py 使用wget下载,wget https://bootstrap.pypa.io/pip/3.5/get-p 阅读全文
posted @ 2021-10-18 13:33 三人行必有我师娘 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 安装&配置(Images)1)Ubuntu安装 apt-get install docker.io -y2) 更换为国内源:vim /etc/docker/daemon.json{"registry-mirrors": ["https://kfwkfulq.mirror.aliyuncs.com", 阅读全文
posted @ 2021-09-28 16:01 三人行必有我师娘 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 一、使用rufus+GPT+DD方式写入U盘 二、更换国内源 1、删除企业源 mv /etc/apt/sources.list.d/pve-enterprise.list /etc/apt/sources.list.d/pve-enterprise.list.bak 2、下载秘钥 wget http 阅读全文
posted @ 2021-09-23 17:28 三人行必有我师娘 阅读(846) 评论(0) 推荐(0) 编辑
摘要: 【文件基本操作】 data = open("yesterday2",encoding="utf-8").read() #直接打开文件读取文件内容 f = open("yesterday",encoding="utf-8") #f叫文件句柄,文件的内存对象,包含文件名、大小、内存的起始位置等 data 阅读全文
posted @ 2021-09-09 14:00 三人行必有我师娘 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 【String字符串基础用法】 字符串常用方法 names = "my name is Lukas Huang." 1、find 查找字符的位置,找不到返回-1,跟index类似,index找不到抛出异常 names.find("name") #返回查到的首字符的位置 2、count方法,计数 na 阅读全文
posted @ 2021-09-09 12:14 三人行必有我师娘 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 【String基础语法】 set #设置值 set animal "dog" get #获取值 get animal mset #设置多个值 mset animal1 "dog" animal2 "cat" mget #获取多个值 mget animal1 animal2 append #追加字符串 阅读全文
posted @ 2021-09-09 10:54 三人行必有我师娘 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 【配置pip国内源】 1、Windows 在用户家目录下,创建pip目录,pip目录下创建pip.ini文件,文件内容如下: [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = 阅读全文
posted @ 2021-08-12 16:53 三人行必有我师娘 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 【源码安装/卸载python】 可以重新源码安装,此时需要记录安装文件细节,可通过--record XX来记录,如:python setup.py install --record setup.log 这时所有的安装细节都写到log里了想要卸载的时候cat setup.log | xagrs rm 阅读全文
posted @ 2021-07-21 11:42 三人行必有我师娘 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 【清除last日志】 # > /var/log/wtmp # > /var/log/btmp # > /var/log/lastlog 阅读全文
posted @ 2021-07-19 11:04 三人行必有我师娘 阅读(26) 评论(0) 推荐(0) 编辑