从使用Spacy的Python 3脚本创建.exe

时间:2020-09-11 17:22:11

标签: python matplotlib pyinstaller spacy topic-modeling

我使用LDA编写了一个用于主题建模的Python脚本,我想将.py转换为可执行文件。我尝试使用PyInstaller无济于事(显示了隐藏的导入和matplotlib的兼容性问题,但是现在的问题是,即使使用multiprocessing.freeze_support()之后,它也反复运行脚本而不显示输出..)

是否存在将使用spacy的脚本转换为一个.exe文件的有效方法?

操作系统:Windows 10

Python 3.8.5

Spacy 2.3.2

其他外部模块:

  • matplotlib 3.2.2
  • easygui 0.98.1
  • pdfminer.six 20200726
  • nltk 3.5
  • gensim 3.8.3
  • PyLDAvis 2.1.2
if __name__ == "__main__":
    freeze_support()
    Process(target=main).start()

0 个答案:

没有答案