which python3 or
To trace the real location:
(Get-Command python).Source
# macOS/Linux ls -l $(which python3) # follow one level realpath $(which python3) # fully resolved path Example output:
type -a python3 or from within Python:
where python If that returns nothing, try:
which -a python3 or using whereis :
which python3 or
To trace the real location:
(Get-Command python).Source
# macOS/Linux ls -l $(which python3) # follow one level realpath $(which python3) # fully resolved path Example output:
type -a python3 or from within Python:
where python If that returns nothing, try:
which -a python3 or using whereis :