Tag: python
All the articles with the tag "python".
Python 包管理工具比较
对比 uv、Poetry、PDM、Hatch、pixi 和 conda 在虚拟环境、锁文件与发布流程上的差异。
Playwright 常见问题
Updated:可以使用 --save-storage=login.json 和 --load-storage=login.json 来为录制的脚本开启状态保存和加载功能。
Python 常见问题
Updated:报错 Defaulting to user installation because normal site-packages is not writeable
Python setup 常用命令
Updated:整理 Python setup.py、虚拟环境初始化和项目安装发布的常用命令。
Python 一键升级 TensorFlow 相关的东西
Updated:pip3 install -U tensorflow keras pandas numpy jieba fastapi uvicorn
Python 版本管理和依赖管理
Updated:对比现代 Python 版本管理、虚拟环境、依赖锁定和项目打包发布的常用方案。
pip 使用国内源安装 requirements.txt 中的包
Updated:pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple pymysql
Python PyMySQL 特殊字符报错
Updated:PyMySQL 获取数据时报 'utf-8' codec can't decode byte 0xed in position 2: invalid continuation byte错误 的问题
Python 面向对象
Updated:通过示例介绍 Python 类、方法、继承、封装、多态和面向对象编程基础。