Python 当我尝试安装pyinstaller时,我可以';不要运行命令

Python 当我尝试安装pyinstaller时,我可以';不要运行命令,python,pyinstaller,Python,Pyinstaller,我试图安装和运行它,但我这样做,它不工作 C:\Users\Dino Non Admin>py -m pip install pyinstaller Collecting pyinstaller Using cached PyInstaller-3.3.tar.gz Requirement already satisfied: setuptools in c:\users\dino non admin\appdata\local\programs\python\python35\lib

我试图安装和运行它,但我这样做,它不工作

C:\Users\Dino Non Admin>py -m pip install pyinstaller
Collecting pyinstaller
  Using cached PyInstaller-3.3.tar.gz
Requirement already satisfied: setuptools in c:\users\dino non admin\appdata\local\programs\python\python35\lib\site-packages (from pyinstaller)
Requirement already satisfied: pefile>=2017.8.1 in c:\users\dino non admin\appdata\local\programs\python\python35\lib\site-packages (from pyinstaller)
Requirement already satisfied: macholib>=1.8 in c:\users\dino non admin\appdata\local\programs\python\python35\lib\site-packages (from pyinstaller)
Requirement already satisfied: future in c:\users\dino non admin\appdata\local\programs\python\python35\lib\site-packages (from pyinstaller)
Requirement already satisfied: pypiwin32 in c:\users\dino non admin\appdata\local\programs\python\python35\lib\site-packages (from pyinstaller)
Requirement already satisfied: altgraph>=0.13 in c:\users\dino non admin\appdata\local\programs\python\python35\lib\site-packages (from macholib>=1.8->pyinstaller)
Installing collected packages: pyinstaller
  Running setup.py install for pyinstaller ... done
Successfully installed pyinstaller-3.3

C:\Users\Dino Non Admin>pyinstaller
'pyinstaller' is not recognized as an internal or external command,
operable program or batch file.
此外,对于这些文件:

pyinstaller.exe
pyinstaller-script.py
当我打开它们时,它会执行以下操作:

Pyinstaller cannot check for assembly dependencies.
Please install PyWin32 or PyWin32-ctypes
我试着照它说的做,但是

C:\Users\Dino Non Admin>py -m pip install pypiwin32
Requirement already satisfied: pypiwin32 in c:\users\dino non admin\appdata\local\programs\python\python35\lib\site-packages

PyInstaller是应用程序而不是包。您无需将其安装在PC中即可使用。只需下载并解压缩即可

cd pyinstaller
您想要的包是
newscript.py
。我把它保存在pyinstaller文件夹中。现在,为了用这个脚本创建可执行文件,只需运行

`python pyinstaller.py newscript.py` 

它将处理脚本,并创建一个名为newscript的文件夹。Pyinstaller使用build文件夹作为临时容器来包含所需的包和文件。dist文件夹将包含可执行文件。

尝试
pip安装pywin32 ctypes

是否在本地路径中添加了python?