mindaffect/pymindaffectBCI

cannot find python executable

Closed this issue · 1 comments

#!/usr/bin/python3

Executable Python scripts should also work with Anaconda and other installers, which result in the python interpreter being elsewhere.

You should start the script with

#!/usr/bin/env python3

to make it independent from the specific python location, but to use the one that the user has on his/her path.

This might of course also apply to other .py files.

Thanks, I believe now resolved.