after installing" Evaluate/check the setup" i have given prompt "afni_system_check.py -check_all" after enter it on terminal shown command not found,,,plese tell me how to fix it?
New to AFNI. I install AFNI on Win11 WSL2(ubuntu 22.04) following the instructions 3 Evaluate/check the setup 'Quick Setup" and run "afni_system_check.py -check_all" in a new terminal session, command not found.result i got then what i have to fix it[date=2025-01-26 time=10:59:00 timezone="Asia/Kolkata"]
As I am not a Federal employee, I will attempt to help. In the terminal, type the command
find ~ -name afni_system_check.py -print
If the program is on your computer under your home directory (which is what the ~
means), then you should get the full path to the file (or files) that the find
command finds.
If you do have the command on your system, then you need to run the command with the full path. For example, if the find
command returns /home/bob/abin/afni_system_check.py
then you would use the command below:
/home/bob/abin/afni_system_check.py -check_all
If you are completely unfamiliar with Unix/Linux, then you should find someone you know or work with to help you with the basic concepts of paths and directories.