Tag Archives: path

Find out executable resolve path

When we run a command like python --version from CLI, Windows looks for python.exe from the “Environment Variables”, specifically checks the PATH variable. If you want to know from where the executable got resolved, you can use a handy utility called where.exe:

where python

Of course, we can where the where🙂

where where

Happy coding!