如何获取python安装路径?
时间: 2023-07-27 16:08:42 浏览: 431
可以通过以下两种方法获取Python的安装路径:
1. 在Python交互式环境中输入以下代码:
```python
import sys
print(sys.executable)
```
运行后,会输出Python解释器的安装路径。
2. 在命令行中输入以下命令:
```bash
which python
```
或者
```powershell
where python
```
运行后,会输出Python解释器的安装路径。
阅读全文