ENH: improve FreeSurfer error message when executable not found#13790
ENH: improve FreeSurfer error message when executable not found#13790ayuclan wants to merge 12 commits intomne-tools:mainfrom
Conversation
Closes mne-tools#12917 Improved error message when FreeSurfer executable (e.g., mri_watershed) cannot be found. - Clarifies need for proper FreeSurfer setup - Mentions adding $FREESURFER_HOME/bin to PATH - Notes that Python/Jupyter should be started from configured shell This helps users diagnose common setup issues more easily.
for more information, see https://pre-commit.ci
|
Hi, this is my first contribution to MNE. I’ve added a clearer error message for missing FreeSurfer executables. I also saw pre-commit auto-fixes applied—please let me know if any further changes or formatting adjustments are needed. Thanks! |
|
If we don't opt for some magic solution where MNE-Python tries to go the FreeSurfer setup itself, then this is indeed a much better error message. Thanks @ayuclan! |
ENH: refine FreeSurfer setup error message Co-authored-by: Marijn van Vliet <w.m.vanvliet@gmail.com>
JiwaniZakir
left a comment
There was a problem hiding this comment.
The error handling in bem.py catches FileNotFoundError specifically for the mri_watershed executable, but the error message hardcodes that name rather than referencing the actual command from cmd[0]. If run_subprocess_env raises FileNotFoundError for a different reason — e.g., an input file path issue on some platforms — the message will be misleading. Consider either extracting the executable name dynamically (cmd[0]) or at minimum catching the exception as e and checking e.filename to verify it matches the expected executable before reraising with the custom message. Additionally, it's worth adding a test case that mocks run_subprocess_env to raise FileNotFoundError and asserts that the resulting RuntimeError message contains the expected guidance text, since this new branch is currently untested. The documentation link at the end of the message ("See MNE installation documentation for details.") would be more useful if it included an actual URL.
Thanks for the detailed feedback. I’ll work on these changes and update the PR soon. |
|
I think @ayuclan's approach is good. For one, all the input parameters are already explicitly checked by the code. Second, if something fails in the @JiwaniZakir I know you use AI and not always disclose it. Was your comment AI generated? |
|
I would be ok with not adding a unit test for this one, because it would be a little tricky. The unittest we have for |
ENH: preserve original exception using "from e" Co-authored-by: Marijn van Vliet <w.m.vanvliet@gmail.com>
Added changelog entry for PR mne-tools#13790 describing the improved error message when FreeSurfer executable is not found.
|
Thank you for the review and approval! I’ve addressed the suggestions and added the changelog entry. Please let me know if anything else is needed. |
|
The style checker is complaining: looks like line 1325 is too long now and needs to be broken up. Also, if you create an account on circleci, then the documentation building bot can run for you and see if your changelog entry renders properly. |
|
Also, to give you proper credit, can you add your name to |
|
Thanks for pointing that out! I’ve fixed the line length issue in bem.py
and updated the changelog with my name. Please let me know if anything else
needs adjustment.
…On Sun, Apr 12, 2026 at 4:46 PM Marijn van Vliet ***@***.***> wrote:
*wmvanvliet* left a comment (mne-tools/mne-python#13790)
<#13790 (comment)>
Also, to give you proper credit, can you add your name to doc/names.inc,
and end your changelog entry with , by `Ayushi Satodiya`_ ? (see any of
the other changelog entries on how we always end them with our names).
—
Reply to this email directly, view it on GitHub
<#13790 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BJHAVSVUH3N7RNE5VMES5L34VN3KRAVCNFSM6AAAAACXAKPAN2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHM2DEMZRGM4DKMJRGY>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
|
Let's see if we can make all the checkmarks green :) Currently, circleci refuses to run because you have not registered an account with them yet. Could you click on one of the failed ci/circleci tests and then signup for circleci? |
|
Hello,
I’ve set up CircleCI and re-triggered the checks. The CircleCI jobs
(build_docs and linkcheck) are now running successfully.
There is currently one remaining test failure on Python 3.14 (
test_3d_backend[pyvistaqt]), related to a VTK API change (GetCapacity vs
Capacity). I’m working on updating this to ensure compatibility.
I’ll push a fix shortly once verified.
…On Mon, Apr 13, 2026 at 4:43 PM Marijn van Vliet ***@***.***> wrote:
*wmvanvliet* left a comment (mne-tools/mne-python#13790)
<#13790 (comment)>
Let's see if we can make all the checkmarks green :) Currently, circleci
refuses to run because you have not registered an account with them yet.
Could you click on one of the failed ci/circleci tests and then signup for
circleci?
—
Reply to this email directly, view it on GitHub
<#13790 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BJHAVSR2PSGZWHR7GBN4UYL4VTDWPAVCNFSM6AAAAACXAKPAN2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHM2DEMZVHE2DCMRWG4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
|
Hello, I’ve set up CircleCI and re-triggered the checks—those are now passing. There’s one remaining failure on Python 3.14 ( Should I handle this, or ignore for now? |
preferable that this gets fixed in a separate PR, since it's not related to the changes here. If you know how to fix it, feel free to open a new PR for it --- if not, someone else will do so soon. |
|
Got it, thank you ! I’ll leave this for now since it’s not related to this
PR. I’ll try to look into it separately.
… Message ID: ***@***.***>
|
Closes #12917
Improved error message when FreeSurfer executable (e.g., mri_watershed) cannot be found.
This helps users diagnose common setup issues more easily.