代码小工蚁英语单词列表生成器V2.0开发过程中问题备忘
笔者近期在使用Pyinstaller制作.EXE程序时遇到问题,出现如下提示:
PyInstaller cannot check for assembly dependencies.
Please install pywin32-ctypes.
问题出现的场景:
Python 3.7 64位,Win7 64位系统。
笔者的电脑安装过多种版本的Python,如2.7,3.6,3.7。后来还将3.6升级到3.7,但文件夹名还是保留原样。
小知识:
Python是32位还是64位,可以在命令行启动Python时查看到。
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
处理过程:
安装pip:执行:easy_install pip 进行安装即可。
如果以前已安装pywin32的,请先到控制面板中卸载pywin32。pip install pywin32-ctypes
安装pypiwin32:
pip install pypiwin32
系统很可能会提示你已安装了相应的库。
安装pyinstaller:
pip install pyinstalle