上一页 1 2 3 4 5 6 7 8 ··· 43 下一页
摘要: 安装 https://www.pythonguis.com/installation/install-pyside6-mac/ pyside6-uic路径 我是通过find命令找到的啊 添加到zshrc中 打开~/.zshrc 最后追加 alias pyside6-uic="/Users/fanji 阅读全文
posted @ 2024-01-03 16:43 Tarzen 阅读(302) 评论(0) 推荐(0) 编辑
摘要: mac macOS :14.0 (23A344) 查看pyside6安装路径 python3 -m pip show pyside6 Location就是安装路径 查找Designer 进入到上面的Location路径,终端执行: cd ./PySide6/Designer.app/Contents 阅读全文
posted @ 2024-01-03 15:08 Tarzen 阅读(536) 评论(0) 推荐(0) 编辑
摘要: 思路 使用QTimer.singleShot(3000, self.openwindown).完成单发:3s后执行openwindown 代码 from PySide6.QtCore import Signal, QTimer from PySide6.QtGui import QFont, Qt 阅读全文
posted @ 2024-01-03 14:44 Tarzen 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 思路 和主窗口给子窗口传参数不同的点就是需要把,主窗口传入子窗口 代码 from PySide6.QtWidgets import QApplication, QWidget, QVBoxLayout, QLabel, QPushButton, QLineEdit from PySide6.QtCo 阅读全文
posted @ 2024-01-03 14:21 Tarzen 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 通过信号发送 from PySide6.QtWidgets import QApplication, QWidget, QVBoxLayout, QLabel, QPushButton, QLineEdit from PySide6.QtCore import Signal, Slot class 阅读全文
posted @ 2024-01-03 13:48 Tarzen 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 最近项目需要开始学习了Pyside6了,跟着b站·Python调包侠-Bemake·视频学习 子窗口 from PySide6.QtWidgets import QApplication, QWidget, QVBoxLayout, QLabel, QPushButton class Mywindo 阅读全文
posted @ 2024-01-03 10:39 Tarzen 阅读(1500) 评论(0) 推荐(0) 编辑
摘要: 问题复现 我的字典格式: import json d = {'Demo': {'Total_Result': 'Pass', 'info': {'test3': 'Pass'}}, '10.0.0.111': {'Total_Result': 'Pass', 'info': {'test_doubl 阅读全文
posted @ 2023-12-29 15:07 Tarzen 阅读(326) 评论(0) 推荐(0) 编辑
摘要: requirements.txt中指定安装源 在该文件第一行添加 -i url # requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple pytest 阅读全文
posted @ 2023-12-28 13:35 Tarzen 阅读(1859) 评论(0) 推荐(0) 编辑
摘要: 不安全的解决办法:一 pip install xyz --break-system-packages 不安全的解决办法:二 rm /usr/lib/python3.11/EXTERNALLY-MANAGED 建议的解决办法:三 sudo apt install python3.11-venv # 进 阅读全文
posted @ 2023-12-28 09:40 Tarzen 阅读(1661) 评论(0) 推荐(1) 编辑
摘要: #!/bin/bash exit 1 # 异常退出 exit 0 # 正常退出 阅读全文
posted @ 2023-12-27 14:55 Tarzen 阅读(28) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 43 下一页