如何查看pyinstaller的安装路径
时间: 2023-12-11 16:50:05 浏览: 300
在cmd中查看python的安装路径方法
可以使用以下命令查看pyinstaller的安装路径:
```
pip show pyinstaller
```
在命令行中输入这个命令后,你将会看到类似下面的信息:
```
Name: PyInstaller
Version: 3.6
Summary: PyInstaller bundles a Python application and all its dependencies into a single package.
Home-page: https://www.pyinstaller.org/
Author: PyInstaller Developers
Author-email: pyinstaller@googlegroups.com
License: GPL-2.0-or-later
Location: /usr/local/lib/python3.7/site-packages
Requires: setuptools
Required-by:
```
其中,`Location` 行显示了PyInstaller的安装路径。在这个例子中,PyInstaller被安装在 `/usr/local/lib/python3.7/site-packages` 目录下。
阅读全文