自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 PyQt5 QDialog ,Qwidget,去除右上角问号,关闭按钮X。

只需要在自己代码初始化里加上一句就行。比如,中间的 | 是选择多个。self.setWindowFlags(Qt.WindowMinMaxButtonsHint | Qt.WindowCloseButtonHint)class ProgressBar(QDialog): def __init__(self): QDialog.__init__(self) self.setWindowFlags(Qt.WindowMinMaxButtonsHint | Qt.Wi

2021-02-24 16:13:55 5965 2

转载 从远程仓库获取最新代码合并到本地分支

转载自https://blog.csdn.net/hanchao5272/article/details/79162130 这里共展示两类三种方式。 1.git pull:获取最新代码到本地,并自动合并到当前分支 命令展示 //查询当前远程的版本$ git remote -v//直接拉取并合并最新代码$ git pull

2021-02-24 15:40:53 573

原创 python-关于pip install 安装库超时的三种解决办法。

1.利用清华或豆瓣源安装 pip install -i https://pypi.doubanio.com/simple/ 包名         pip install -i https://pypi.tuna.tsinghua.edu.cn/simple +包名2.修改超时时间 pip --default-timeout=100 install  包名3.如果以上两种方式都不能解决,用手

2020-08-03 18:05:17 5276 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除