摘要:
查看版本 python --version python2 --version python3 --version 修改系统默认python版本 没有正常的 update-alternatives --list python 添加到版本管理 update-alternatives --install 阅读全文
摘要:
同步下载 def download_file_block(url: str, file_path: str): logging.basicConfig(level=logging.DEBUG) log = logging.getLogger('requests.packages.urllib3') 阅读全文
摘要:
不验证证书减少交互 curl -k -f {$url} -o {dest_path} python requests def download_file_with_requests(url: str, file_path: str): with Session() as session: sessi 阅读全文
摘要:
安装 apt install gdb 查看跟踪信息 strace -T -tt -e trace=all -p pid 查看进程打开的文件 lsof -p pid gdb gdb -p pid 查看上下文 py-list 堆栈 py-bt py-bt-full 变量 py-print py-loca 阅读全文