怎么找python的安装目录
找到 python 安装目录的方法有:命令行查找:where python查看 path 环境变量:echo %path%使用 python 工具:import sys; print(sys.path)windows 注册表:hkey_local_machine\software\python\pythoncore\\installpathmacos 终端:which python
如何找到 Python 的安装目录
直接在命令行中查找:
where python
查看环境变量 PATH:
echo %PATH%
C:\Python38;C:\Python38\Scripts;
使用 Python 命令行工具:
import sys print(sys.path)
使用 Windows 注册表(仅适用于 Windows):
HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\\InstallPath
使用 macOS 终端(仅适用于 macOS):
which python
以上就是怎么找python的安装目录的详细内容,更多请关注php中文网其它相关文章!