摘要: YUM 安装依赖 yum install -y yum-utils device-mapper-persistent-data lvm2 设置yum源 yum-config-manager --add-repo https://download.docker.com/linux/centos/doc 阅读全文
posted @ 2021-11-06 22:26 起个啥 阅读(17) 评论(0) 推荐(0) 编辑
摘要: HTTP server doesn't seem to support byte ranges. Cannot resume. 使用 pacman -Syy 更新以下源 阅读全文
posted @ 2021-02-19 21:41 起个啥 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 更新分支、TAG信息 git fetch 本地创建分支 git checkout -b dev 指定远程分支 git checkout -b dev(本地分支名称) origin/dev(远程分支名称) 阅读全文
posted @ 2021-02-02 13:28 起个啥 阅读(47) 评论(0) 推荐(0) 编辑
摘要: # 阅读全文
posted @ 2021-01-28 17:30 起个啥 阅读(79) 评论(0) 推荐(0) 编辑
摘要: # 阅读全文
posted @ 2021-01-28 12:14 起个啥 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 参考官网流程: https://golang.google.cn/doc/install wget https://golang.google.cn/dl/go1.15.7.linux-amd64.tar.gz tar -C /usr/local -zxvf go1.15.7.linux-amd64 阅读全文
posted @ 2021-01-24 12:29 起个啥 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 'XXX' does not have a commit checked out 在以下场景中使用遇到该问题: 1. git submodule add ... 解决方法: 1. 该子模块已存在,删除本地子模块目录,然后重新添加 阅读全文
posted @ 2020-11-02 09:29 起个啥 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 前言 本篇介绍一下python在Linux(Centos)上的安装方法 正文 源码安装 源码安装是python安装方法中最正规的方法,如果熟练掌握可以在系统中安装多个不同的版本 下载安装包 进入网站 https://www.python.org/downloads/, 选择对应版本的python包进 阅读全文
posted @ 2020-10-31 19:56 起个啥 阅读(78) 评论(0) 推荐(0) 编辑
摘要: leetcode地址 https://leetcode.com/problems/same-tree/ 算法概述 判断两个数是否完全相同 算法解 python class Solution: def isSameTree(self, p: TreeNode, q: TreeNode) -> bool 阅读全文
posted @ 2020-10-29 22:59 起个啥 阅读(57) 评论(0) 推荐(0) 编辑