Technical discuss

清除 Python 缓存

More
27 Dec 2025 09:23 #965 by service
New Topic
# 删除 __pycache__ 目录
Code:
find . -name "__pycache__" -type d -exec rm -rf {} + find . -name "*.pyc" -delete

# 或者使用更简单的方法
Code:
rm -rf __pycache__ rm -rf models/__pycache__
 

Please Log in or Create an account to join the conversation.