我想从.py创建.exe文件。如果我运行.py文件,它将运行良好,并且我没有问题。但是,当我运行由pyinstaller创建的.exe文件时,无法在命令行中输入(输入)任何内容。
我已经尝试了几个选项-onefile execuatable(-onefile),禁用upx(-noupx)。两者都没有任何改善。
导入自己的库是否有问题?更好地在.py文件中粘贴我使用的函数?
from PIL import Image
import numpy as np
from convetai.cropImage import cropImage, step
def main():
path = input()
img = np.array(Image.open(f"{path}"))
print("Your image has a shape of ", img.shape)
n = int(input("Enter number of divisions."))
#dx, dy = step(n, img.shape)
i = int(input("Enter num of row"))
j = int(input("Enter num of column"))
n_img = cropImage(img, n, i, j, save=True)
print("Done.")
if __name__ == '__main__':
main()
谢谢。