# bdf_read **Repository Path**: ser163/bdf_read ## Basic Information - **Project Name**: bdf_read - **Description**: bdf file view - **Primary Language**: Python - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-31 - **Last Updated**: 2026-03-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bdf_read ## 运行环境 `Python 3.11 + tkinter` ## 依赖 ```shell pip install mne matplotlib numpy pip install scipy==1.13.0 ``` ## 打包成exe ### 安葬打包器 ```shell pip install pyinstaller ``` ### 编译 最简单的方式(单文件模式) ```shell pyinstaller --onefile main.py ``` 推荐:隐藏控制台窗口 + 单文件 + 指定图标 ```shell pyinstaller --onefile --windowed --icon=ico.ico main.py