📅  最后修改于: 2023-12-03 15:26:35.750000             🧑  作者: Mango
如果你在编写 Python 代码时需要调用外部库或模块,那么你需要知道你的 Python 安装路径。本文将介绍如何在 Windows 和 macOS 上查找 Python 的安装路径。
Win+X
或 Win+R
打开运行窗口,然后输入 cmd
或 powershell
,最后按下 Enter
键。where python
或 where python3.8
(根据你的 Python 版本而定),将返回 Python 可执行文件的路径,如 C:\Users\Username\AppData\Local\Programs\Python\Python38-32\python.exe
。where python2.7
。which python
或 which python3.8
(根据你的 Python 版本而定),将返回 Python 可执行文件的路径,如 /usr/local/bin/python3
。which python2.7
。无论你使用哪种方法查找 Python 的安装路径,都可以在需要时将路径添加到系统环境变量中,方便在命令提示符、PowerShell 或终端中直接运行 Python。