Re: [PyInstaller] Having some troubles, but its not app breaking

2019-05-09 Thread Cody Granger
Okay I understand that. Still am confused as why one program I make does include, for example django, but another one I make doesn't. Either or, I was reading into it else where, before and after posting this, and I was reading somewhere about making a virtual environment, which I know how to

Re: [PyInstaller] Having some troubles, but its not app breaking

2019-05-09 Thread Eric Fahlgren
Cody, the issue is dependencies. You as a human look at the installation and can say, "Hey, that isn't used," but PyInstaller is not as smart and sees a big library like PIL or django and has to assume that anything in those libraries that is possibly connected must be included. To make up an

[PyInstaller] Having some troubles, but its not app breaking

2019-05-08 Thread Cody Granger
Hey everyone. So I've been working with python for a few months now, and have been coding this choose your adventure style game, and have no issues when I've tried to make that into an Exe(thousand plus lines of code, 2 .py files, 5 .txt files, under 5mb) with Auto Py to Exe, however I coded