标签: python linux pyinstaller
Test1.py 具有此代码
import sklearn print("Testing Pyinstaller")
使用
$python3 Test1.py
然后使用pyinstaller(3.4版)对此进行了编译。
$pyinstaller -F Test1.py
成功完成。
之后,当我尝试在dist目录中运行可执行文件时。它一直在循环中运行。
$。/ Test1