Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 961 Bytes

PATH_LOCATIONS.md

File metadata and controls

34 lines (28 loc) · 961 Bytes

Locating Python on your computer

If you are trying to find the location of Python3 on your computer, try these locations first. The exact location and filename will depend on the method you used to install Python and which version is installed.

Windows

Look for python.exe

  • C:\Python37
  • C:\Program Files\Python37
  • C:\Users\username\AppData\Local\Programs\Python\Python37-XX

Mac

Look for python3.7 or python3

  • /usr/local/bin
  • /Library/Frameworks/Python.framework/Versions/3.7/bin/
  • /usr/local/Cellar/python/3.7.X_X/bin/
  • /Users/username/anaconda/bin/
  • /anaconda3/bin/

Linux

Look for python3.7 or python3

  • /usr/bin/
  • /usr/local/bin

Finally

If you didn't find it at any of these locations, try searching google more specifically based on your Python version, operating system, and method of download.

If you found it at another location, please email me at arianne.dee.studios@gmail.com so I can update this list.