# taechTools **Repository Path**: Interest-driven/taech-tools ## Basic Information - **Project Name**: taechTools - **Description**: 一些教学使用的工具集合 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-10 - **Last Updated**: 2026-01-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 打包python程序 pyinstaller --onefile --noconsole .\quadratic_equation.py # 生成png dot -Tpng gcd_algorithm.dot -o gcd_algorithm.png # 指定字体 dot -Tpng -Nfontname="SimSun" -Efontname="SimSun" gcd_algorithm.dot -o gcd_algorithm.png # 生成高清png dot -Tpng -Nfontname="SimSun" -Efontname="SimSun" -Gdpi=300 gcd_algorithm.dot -o gcd_algorithm_hd.png # 生成svg dot -Tsvg -Nfontname="SimSun" -Efontname="SimSun" gcd_algorithm.dot -o gcd_algorithm.svg