python - Pyinstaller: how to include file -
i'm trying make simple project python compile pyinstaller
my code :
# coding: utf-8 f = open("1.txt") print f.read()
but it's showing me after compile error :
no such file 1.txt
so question how include file , image pyinstaller
Comments
Post a Comment