首页
博客
书签
文件
分析
登录
Search
Generic filters
Filter by
Categories
Tags
Authors
Show all
All
猫
Python
练习
Linux
Windows
Office
笔记
正则表达式
记事本
随笔
安卓
软件
硬件
虚拟化
路由
网络
NAS
WordPress
SEO
游戏
生活
菜谱
未分类
All
All
admin
2022年5月22日
Published by
admin
at
2022年5月22日
Categories
Linux
Linux中的tree命令
1、tree命令作用 以树状结构查看目录下的内容 2、优点 使用tree命令可以很直接看到目录下的内容,不用进入每个目录然后ls看一下了。 3、tree命令安装 yum install tree -y 检查是否安装成功 rpm -qa tree 或者 yum list installed tree 4、tree命令的使用 直接使用tree命令 或 只查看当前
[…]
2022年5月21日
Published by
admin
at
2022年5月21日
Categories
练习
PyQt: 获取电脑屏幕桌面的宽、高尺寸
import sys from PyQt5.Qt import * class Window(QWidget): def __init__(self): super().__init__() self.setup_ui() def setup_ui(self): self.setWindowTitle("Qt桌面应用程序") self.resize(300,
[…]
2022年5月19日
Published by
admin
at
2022年5月19日
Categories
记事本
PyQt打包安卓APK Packaging PyQt application using pyqtdeploy for Android APK
This content is restricted to subscribers
2022年5月16日
Published by
admin
at
2022年5月16日
Categories
WordPress
解决WordPress中字符转义的问题 / 破折号连接符(两个减号-) / How to resolve WordPress double dash problem
The WordPress bloggers might be facing issues with double dash being converted into the single dash. This happens because of the wptexturize filter applied to the content by the Wo
[…]
2022年5月16日
Published by
admin
at
2022年5月16日
Categories
Python
Python+PyQt 打包
https://www.zhihu.com/question/48776632/answer/2336654649 早先看一堆人说 PyQt 打包麻烦,部署困难的,打出来的包大(几十兆起步),而且启动贼慢,其实 Python+PyQt 打包非常容易,根本不需要用什么 PyInstaller,我手工打包出来的纯 Python 环境只有 5MB,加上 PyQt
[…]
2022年5月15日
Published by
admin
at
2022年5月15日
Categories
Linux
Ubuntu查看已安装的软件
1.查看安装的所有软件 dpkg -l 例如:dpkg -l | grep ftp 2.查看软件安装的路径 dpkg -L | grep ftp 也可以用 whereis ftp 3.查看软件版本 aptitude show 例如:aptitude show ftp 删除软件 方法一、如果你知道要删除软件的具体名称,可以使用 sudo apt-get rem
[…]
2022年5月14日
Published by
admin
at
2022年5月14日
Categories
Python
Python3在Ubuntu中安装配置虚拟环境及使用
Python3.3以上的版本通过venv模块原生支持虚拟环境,可以代替Python之前的virtualenv。 该venv模块提供了创建轻量级“虚拟环境”,提供与系统Python的隔离支持。每一个虚拟环境都有其自己的Python二进制(允许有不同的Python版本创作环境),并且可以拥有自己独立的一套Python包。他最大的好处是,可以让每一个python项
[…]
2022年5月12日
Published by
admin
at
2022年5月12日
Categories
Python
Ubuntu16.04安装Python3.7及其pip3并切换为默认版本 / 多版本python及管理
详解Ubuntu16.04安装Python3.7及其pip3并切换为默认版本 这篇文章主要介绍了详解Ubuntu16.04安装Python3.7及其pip3并切换为默认版本,小编觉得挺不错的,现在分享给大家,也给大家做个参考。 0.配置依赖环境,如果不进行这步可能会出现一些问题 中间可能有多余空格,去除下再运行,一般都能安装成功,如果不能可以先更新下sudo
[…]
2022年5月9日
Published by
admin
at
2022年5月9日
Categories
Linux
Linux中安装jdk8
目录 一、下载JDK 二、安装 三、可能出现的错误 一、下载JDK 以 jdk8 为例 文件名 : jdk-8u191-linux-x64.tar.gz 下载地址:https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 二、安装 1、上传安装包
[…]
2022年5月7日
Published by
admin
at
2022年5月7日
Categories
Python
PyQt5: 音频与视频
https://zhuanlan.zhihu.com/p/75657373
1
2
3
...
42
Next page