我对pyinstaller 3.1.1版有点问题。我正在使用它与python 3.4(Anaconda)。 我需要编译一个不包括PyQt5和matplotlib
的项目pyinstaller --onefile --icon=Project.ico --exclude-module=PyQt5 --exclude-module=matplotlib Project.py
但是当我尝试使用“--exclude-module”时,我收到以下错误消息:
Usage: pyinstaller-script.py [opts] <scriptname> [ <scriptname> ...] | <specfile>
pyinstaller-script.py: error: no such option: --exclude-module
我在编写命令时犯了错误吗?
欢迎任何帮助。
编辑: 问题是我正在使用的pyinstaller版本。我从github上下载了开发分支。现在我从pyinstaller.org安装了稳定版本,一切正常......至少对于--exclude-module指令。