> > *Startup* > > Yesterday I started investigating the pyzo code in earnest. I use a > script, pz.bat, to start pyzo from a console: > > python <path to>\pyzo\source\pyzo\__main__.py > > The name pz.bat prevents conflicts with pyzo's own startup script, which > executes pyzo.exe. pyzo.exe is "frozen", which prevents any changes from > taking effect. In contrast, invoking pyzo as shown above allows me to > change pyzo at will. Print statements go to the console only when started > as above. >
Likely not important now as you have something that works, but for posterity this skips the frozen problem and allows changing and testing code in-situ: git clone https://github.com/pyzo/pyzo.git pushd pyzo pip install --editable . #launch with: pyzo (Assumes pyqt is already installed.) matt -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/leo-editor. For more options, visit https://groups.google.com/d/optout.
