linux查看python路径
时间: 2023-04-17 21:01:05 浏览: 162
查看python安装路径及pip安装的包列表及路径
5星 · 资源好评率100%
可以使用以下命令查看Python路径:
```
which python
```
或者
```
whereis python
```
这些命令将显示Python可执行文件的路径。如果您想查看Python模块的路径,则可以使用以下命令:
```
python -c "import sys; print(sys.path)"
```
阅读全文