# edfview **Repository Path**: ser163/edfview ## Basic Information - **Project Name**: edfview - **Description**: eeg 脑电查看程序. - **Primary Language**: Python - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-27 - **Last Updated**: 2026-04-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # edf_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 ```