Home > Article > Backend Development > Where to find python after downloading it
The Python installation directory varies between systems: Windows: Default path: C:\Users{username}\AppData\Local\Programs\Python. macOS: Default path: /Library/Frameworks/Python.framework/Versions/{Python version}. Linux: Default path: /usr/bin/python. Other paths: customized or specific versions, use the whereis python command to find in the command line terminal.
Installation directory after Python download
Windows system:
C:\Users\{username}\AppData\Local\Programs\Python
##macOS system:
Default installation path:
If a custom installation path is specified during the installation process, Python will be installed in that path.
Anaconda:
Open a command line terminal (such as Windows command prompt, macOS terminal or Linux bash).
<code>whereis python</code>
The above is the detailed content of Where to find python after downloading it. For more information, please follow other related articles on the PHP Chinese website!