打包python腳本為exe的坎坷經曆, by pyinstaller方法
又應驗了那句歌詞. 不經曆風雨, 怎麼見得了彩虹.
安裝過程略去不提, 僅提示: pip install pyinstaller
打包指令
粗看包裡的文檔, 然後開始打包:
打開console
就用了這個指令: pyinstaller monitor_rt_quotes.py
結果就是比預期麻煩的多的多的: 幹活, 硬碟不停地balabala叫, 漫長
這裡記錄一下控制台顯示的提示資訊:
官方文檔對上述指令的解釋為:
|PyInstaller| analyzes myscript.py and:
Writes myscript.spec in the same folder as the script.
Creates a folder build in the same folder as the script if it does not exist.
Writes some log files and working files in the build folder.
Creates a folder dist in the same folder as the script if it does not exist.
Writes the myscript executable folder in the dist folder.
In the dist folder you find the bundled app you distribute to your users.
巨長的提示後, 得到了exe檔案, 有18Mb的大小(太龐大了, 肥肥肥!!!), 但是結果很悲劇:
D:\DB\fz\build\monitor_rt_quotes>monitor_rt_quotes.exe sz000911
Error loading Python DLL: D:\DB\fz\build\monitor_rt_quotes\python27.dll (error code 126)
估計是沒有添加必要的打包選項造成的. 繼續努力.
不死心! 解決問題需要由簡到繁, 先從hellowworld.py做起. 搞定了.
被打包的檔案: helloworld.py, 人人皆知.
打包的指令: pyinstaller -D helloworld.py
打包的console提示: 見随後的引述塊
打包釋出exe時的紀律(注意事項):
很簡單的py腳本. Simple is better than complex. 應該遵守Python的規則.
是以在打包為exe時, 應該盡量減少沒有必要的python包的導入. 否則吃的太胖
可以運作的exe檔案位于: dist 目錄下, 而不是build目錄下的.
運作後的結果:
D:\DB\fz>pyinstaller -D helloworld.py
155 INFO: PyInstaller: 3.2.1
155 INFO: Python: 2.7.11
155 INFO: Platform: Windows-XP-5.1.2600-SP3
155 INFO: wrote D:\DB\fz\helloworld.spec
155 INFO: UPX is not available.
155 INFO: Extending PYTHONPATH with paths
['D:\\DB', 'D:\\DB\\fz']
155 INFO: checking Analysis
155 INFO: Building Analysis because out00-Analysis.toc is non existent
155 INFO: Initializing module dependency graph...
155 INFO: Initializing module graph hooks...
312 INFO: running Analysis out00-Analysis.toc
327 INFO: Adding Microsoft.VC90.CRT to dependent assemblies of final executable required by d:\anaconda2\python.exe
327 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
327 INFO: Searching for assembly x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww ...
327 INFO: Found manifest C:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest
327 INFO: Searching for file msvcr90.dll
327 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll
327 INFO: Searching for file msvcp90.dll
327 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll
327 INFO: Searching for file msvcm90.dll
343 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll
343 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
343 INFO: Adding redirect Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0,30729, 1)
484 INFO: Caching module hooks...
500 INFO: Analyzing D:\DB\fz\helloworld.py
500 INFO: Loading module hooks...
500 INFO: Loading module hook "hook-encodings.py"...
5405 INFO: Loading module hook "hook-httplib.py"...
5421 INFO: Looking for ctypes DLLs
5437 INFO: Analyzing run-time hooks ...
5452 INFO: Looking for dynamic libraries
6155 INFO: Looking for eggs
6155 INFO: Using Python library d:\anaconda2\python27.dll
6171 INFO: Found binding redirects:[BindingRedirect(name=u'Microsoft.VC90.CRT', language=None, arch=u'x86', oldVersion=(9, 0, 21022, 8), newVersion=(9, 0, 30729, 1), publicKeyToken=u'1fc8b3b9a1e18e3b')]
6187 INFO: Warnings written to D:\DB\fz\build\helloworld\warnhelloworld.txt
6280 INFO: checking PYZ
6296 INFO: Building PYZ because out00-PYZ.toc is non existent
6296 INFO: Building PYZ (ZlibArchive) D:\DB\fz\build\helloworld\out00-PYZ.pyz
6968 INFO: Building PYZ (ZlibArchive) D:\DB\fz\build\helloworld\out00-PYZ.pyz completed successfully.
7062 INFO: checking PKG
7062 INFO: Building PKG because out00-PKG.toc is non existent
7077 INFO: Building PKG (CArchive) out00-PKG.pkg
7125 INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.
7140 INFO: Bootloader d:\anaconda2\lib\site-packages\PyInstaller\bootloader\Windows-32bit\run.exe
7140 INFO: checking EXE
7155 INFO: Building EXE because out00-EXE.toc is non existent
7155 INFO: Building EXE from out00-EXE.toc
7171 INFO: Appending archive to EXE D:\DB\fz\build\helloworld\helloworld.exe
7171 INFO: Building EXE from out00-EXE.toc completed successfully.
7187 INFO: checking COLLECT
7202 INFO: Building COLLECT because out00-COLLECT.toc is non existent
7202 INFO: Building COLLECT out00-COLLECT.toc
7218 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7375 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7390 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\python27.dll
7405 INFO: Updating resource type 24 name 2 language 1033
7468 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7484 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\unicodedata.pyd
7500 INFO: Updating resource type 24 name 2 language 1033
7546 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7562 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_hashlib.pyd
7562 INFO: Updating resource type 24 name 2 language 1033
7609 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7625 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_ctypes.pyd
7640 INFO: Updating resource type 24 name 2 language 1033
7687 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7702 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_ssl.pyd
7718 INFO: Updating resource type 24 name 2 language 1033
7812 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7827 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_socket.pyd
7843 INFO: Updating resource type 24 name 2 language 1033
7875 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7890 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\select.pyd
7905 INFO: Updating resource type 24 name 2 language 1033
7952 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
7968 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\bz2.pyd
7968 INFO: Updating resource type 24 name 2 language 1033
8046 INFO: Building COLLECT out00-COLLECT.toc completed successfully.
D:\DB\fz>
再次嘗試 monitor_rt_quotes.py==> .exe
删除了裡面的多餘的import numpy/pandas/matplotlib等子產品
源碼為:
# -*- coding: utf-8 -*-
"""
Created on Tue Mar 14 14:00:27 2017
@author: Administrator
"""
#import qs_udf as qsu
import crawler
import sys
# ====== monitor_rt_quotes.py ===================
craw= crawler.Crawler()
#rt_quote= craw.get_rt_quotes(code)
#code='sz399317,sz000911,sz000937,sz002005'
code= sys.argv[1]
#print 'about sys.argv:', len(sys.argv), sys.argv
if len(sys.argv)==3:
loop_num= int(sys.argv[2]) # sys.argv的值是被解析為字元串的
craw.show_rt_quotes(code, loop_num)
else: craw.show_rt_quotes(code)
# runfile('D:/DB/fz/crawler.py', wdir='D:/DB/fz', args='sz000911')
# runfile('crawler.py', args='sz399317,sz000911,sz000937,sz002005')
# %run monitor_rt_quotes.py sz399317,sz000911,sz000937,sz002005 # 魔法指令的好處就是: 僅用空格分隔, 對于字元串無需加引号
# %run monitor_rt_quotes.py sz399317,sz000911,sz000937,sz002005 3 # 魔法指令的好處就是: 僅用空格分隔, 對于字元串無需加引号
打包後的結果: exe檔案降到了2.8MB, 還算滿意.
運作效果展示: (cmd控制台程式, 可以攜帶2個參數的)
在spyder的IPython裡的效果截圖:
結果是令人滿意的, 單不完美. 在cmd環境下運作時, 列印輸出的标題行為什麼沒有與下面的資料對齊呢?
成功的pyinstaller打包日志:
D:\DB\fz>pyinstaller -D monitor_rt_quotes.py
140 INFO: PyInstaller: 3.2.1
140 INFO: Python: 2.7.11
140 INFO: Platform: Windows-XP-5.1.2600-SP3
155 INFO: wrote D:\DB\fz\monitor_rt_quotes.spec
155 INFO: UPX is not available.
155 INFO: Extending PYTHONPATH with paths
['D:\\DB', 'D:\\DB\\fz']
155 INFO: checking Analysis
155 INFO: Building Analysis because out00-Analysis.toc is non existent
155 INFO: Initializing module dependency graph...
155 INFO: Initializing module graph hooks...
296 INFO: running Analysis out00-Analysis.toc
296 INFO: Adding Microsoft.VC90.CRT to dependent assemblies of final executable required by d:\anaconda2\python.exe
296 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
296 INFO: Searching for assembly x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww ...
312 INFO: Found manifest C:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest
312 INFO: Searching for file msvcr90.dll
312 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll
312 INFO: Searching for file msvcp90.dll
328 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll
328 INFO: Searching for file msvcm90.dll
342 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll
358 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
358 INFO: Adding redirect Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0,30729, 1)
515 INFO: Caching module hooks...
530 INFO: Analyzing D:\DB\fz\monitor_rt_quotes.py
11733 INFO: Processing pre-safe import module hook _xmlplus
12390 INFO: Loading module hooks...
12390 INFO: Loading module hook "hook-xml.py"...
12546 INFO: Loading module hook "hook-cryptography.py"...
14265 INFO: Processing pre-find module path hook distutils
15905 INFO: Processing pre-safe import module hook six.moves
16592 INFO: Loading module hook "hook-lxml.etree.py"...
16608 INFO: Loading module hook "hook-httplib.py"...
16625 INFO: Loading module hook "hook-pkg_resources.py"...
17812 INFO: Loading module hook "hook-requests.py"...
17828 INFO: Loading module hook "hook-encodings.py"...
18530 INFO: Loading module hook "hook-distutils.py"...
18530 INFO: Loading module hook "hook-sysconfig.py"...
18765 INFO: checking Tree
18780 INFO: Building Tree because out00-Tree.toc is non existent
18780 INFO: Building Tree out00-Tree.toc
18796 INFO: Looking for ctypes DLLs
18828 INFO: Analyzing run-time hooks ...
18842 INFO: Including run-time hook 'pyi_rth_pkgres.py'
18875 INFO: Looking for dynamic libraries
20187 INFO: Looking for eggs
20203 INFO: Using Python library d:\anaconda2\python27.dll
20203 INFO: Found binding redirects:
[BindingRedirect(name=u'Microsoft.VC90.CRT', language=None, arch=u'x86', oldVersion=(9, 0, 21022, 8), newVersion=(9, 0, 30729, 1), publicKeyToken=u'1fc8b3b9a1e1
8e3b')]
20233 INFO: Warnings written to D:\DB\fz\build\monitor_rt_quotes\warnmonitor_rt_quotes.txt
20453 INFO: checking PYZ
20453 INFO: Building PYZ because out00-PYZ.toc is non existent
20467 INFO: Building PYZ (ZlibArchive) D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyz
22155 INFO: Building PYZ (ZlibArchive) D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyz completed successfully.
22342 INFO: checking PKG
22358 INFO: Building PKG because out00-PKG.toc is non existent
22358 INFO: Building PKG (CArchive) out00-PKG.pkg
22421 INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.
22437 INFO: Bootloader d:\anaconda2\lib\site-packages\PyInstaller\bootloader\Windows-32bit\run.exe
22437 INFO: checking EXE
22453 INFO: Building EXE because out00-EXE.toc is non existent
22453 INFO: Building EXE from out00-EXE.toc
22467 INFO: Appending archive to EXE D:\DB\fz\build\monitor_rt_quotes\monitor_rt_quotes.exe
22483 INFO: Building EXE from out00-EXE.toc completed successfully.
22500 INFO: checking COLLECT
22500 INFO: Building COLLECT because out00-COLLECT.toc is non existent
22515 INFO: Building COLLECT out00-COLLECT.toc
22546 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
22687 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
22703 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\pyexpat.pyd
22717 INFO: Updating resource type 24 name 2 language 1033
23203 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
23217 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_bsddb.pyd
23233 INFO: Updating resource type 24 name 2 language 1033
23562 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
23578 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\ssleay32.dll
23592 INFO: Updating resource type 24 name 2 language 1033
23640 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
23655 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\libeay32.dll
23671 INFO: Updating resource type 24 name 2 language 1033
23858 INFO: Building COLLECT out00-COLLECT.toc completed successfully.
D:\DB\fz>
失敗的打包提示logging記錄of pyinstaller:
D:\DB\fz>pyinstaller monitor_rt_quotes.py
860 INFO: PyInstaller: 3.2.1
860 INFO: Python: 2.7.11
860 INFO: Platform: Windows-XP-5.1.2600-SP3
860 INFO: wrote D:\DB\fz\monitor_rt_quotes.spec
860 INFO: UPX is not available.
875 INFO: Extending PYTHONPATH with paths
['D:\\DB', 'D:\\DB\\fz']
875 INFO: checking Analysis
891 INFO: Building Analysis because out00-Analysis.toc is non existent
891 INFO: Initializing module dependency graph...
891 INFO: Initializing module graph hooks...
1094 INFO: running Analysis out00-Analysis.toc
1157 INFO: Adding Microsoft.VC90.CRT to dependent assemblies of final executable required by d:\anaconda2\python.exe
1172 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1f
c8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
1172 INFO: Searching for assembly x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww ...
1172 INFO: Found manifest C:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest
1172 INFO: Searching for file msvcr90.dll
1172 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll
1187 INFO: Searching for file msvcp90.dll
1187 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll
1187 INFO: Searching for file msvcm90.dll
1187 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll
1187 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
1187 INFO: Adding redirect Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
1375 INFO: Caching module hooks...
1391 INFO: Analyzing D:\DB\fz\monitor_rt_quotes.py
17125 INFO: Processing pre-safe import module hook _xmlplus
21282 INFO: Processing pre-find module path hook distutils
27562 INFO: Processing pre-find module path hook site
27562 INFO: site: retargeting to fake-dir 'd:\\anaconda2\\lib\\site-packages\\Py
Installer\\fake-modules'
27625 INFO: Processing pre-safe import module hook win32com
32297 INFO: Processing pre-safe import module hook six.moves
133203 INFO: Loading module hooks...
133203 INFO: Loading module hook "hook-shelve.py"...
133203 WARNING: Hidden import "dbm.ndbm" not found!
133203 WARNING: Hidden import "dbm.dumb" not found!
133203 WARNING: Hidden import "dbm.gnu" not found!
133203 INFO: Loading module hook "hook-distutils.py"...
133250 INFO: Loading module hook "hook-sysconfig.py"...
133250 INFO: Loading module hook "hook-xml.py"...
133266 INFO: Loading module hook "hook-PIL.py"...
133266 INFO: Excluding import 'FixTk'
133282 INFO: Excluding import 'Tkinter'
133282 INFO: Excluding import 'PyQt5'
133297 WARNING: Removing import PIL.ImageQt from module PyQt5
133297 INFO: Excluding import 'PySide'
133312 WARNING: Removing import PIL.ImageQt from module PySide
133312 INFO: Excluding import 'PyQt4'
133312 WARNING: Removing import PIL.ImageQt from module PyQt4.QtGui
133328 WARNING: Removing import PIL.ImageQt from module PyQt4.QtCore
133328 INFO: Loading module hook "hook-scipy.sparse.csgraph.py"...
133344 INFO: Loading module hook "hook-zmq.py"...
137032 INFO: Excluding import 'zmq.libzmq'
137047 WARNING: Removing import zmq from module zmq.libzmq
137047 INFO: Loading module hook "hook-openpyxl.py"...
137110 INFO: Loading module hook "hook-cryptography.py"...
141657 INFO: Loading module hook "hook-pycparser.py"...
141985 INFO: Loading module hook "hook-scipy.io.matlab.py"...
142000 INFO: Loading module hook "hook-jinja2.py"...
142078 INFO: Loading module hook "hook-lxml.etree.py"...
142094 INFO: Loading module hook "hook-httplib.py"...
142094 INFO: Loading module hook "hook-tables.py"...
142110 INFO: Loading module hook "hook-pydoc.py"...
142110 INFO: Excluding import 'Tkinter'
142125 WARNING: Removing import pydoc from module Tkinter
142125 INFO: Loading module hook "hook-pygments.py"...
151657 INFO: Loading module hook "hook-PyQt4.py"...
151672 INFO: Loading module hook "hook-jsonschema.py"...
151719 INFO: Loading module hook "hook-_tkinter.py"...
152266 INFO: checking Tree
152282 INFO: Building Tree because out00-Tree.toc is non existent
152282 INFO: Building Tree out00-Tree.toc
152969 INFO: checking Tree
152969 INFO: Building Tree because out01-Tree.toc is non existent
152969 INFO: Building Tree out01-Tree.toc
153078 INFO: Loading module hook "hook-docutils.py"...
155969 INFO: Loading module hook "hook-matplotlib.backends.py"...
157016 INFO: Matplotlib backend "GTK": ignored
Gtk* backend requires pygtk to be installed.
157828 INFO: Matplotlib backend "GTKAgg": ignored
Gtk* backend requires pygtk to be installed.
158328 INFO: Matplotlib backend "GTKCairo": ignored
No module named gtk
159157 INFO: Matplotlib backend "MacOSX": ignored
cannot import name _macosx
159985 INFO: Matplotlib backend "Qt4Agg": added
160797 INFO: Matplotlib backend "Qt5Agg": added
161812 INFO: Matplotlib backend "TkAgg": added
162828 INFO: Matplotlib backend "WX": ignored
Matplotlib backend_wx and backend_wxagg require wxPython >=2.8.12
163625 INFO: Matplotlib backend "WXAgg": ignored
Matplotlib backend_wx and backend_wxagg require wxPython >=2.8.12
164266 INFO: Matplotlib backend "GTK3Cairo": ignored
Gtk3 backend requires pygobject to be installed.
165078 INFO: Matplotlib backend "GTK3Agg": ignored
Gtk3 backend requires pygobject to be installed.
166469 INFO: Matplotlib backend "WebAgg": added
168032 INFO: Matplotlib backend "nbAgg": added
168782 INFO: Matplotlib backend "agg": added
169360 INFO: Matplotlib backend "cairo": ignored
Cairo backend requires that cairocffi or pycairo is installed.
169860 INFO: Matplotlib backend "emf": ignored
No module named backend_emf
170375 INFO: Matplotlib backend "gdk": ignored
No module named gobject
171344 INFO: Matplotlib backend "pdf": added
174547 INFO: Matplotlib backend "pgf": added
175437 INFO: Matplotlib backend "ps": added
176312 INFO: Matplotlib backend "svg": added
177094 INFO: Matplotlib backend "template": added
177875 INFO: Loading module hook "hook-PIL.Image.py"...
178969 INFO: Loading module hook "hook-matplotlib.py"...
179578 INFO: Loading module hook "hook-xml.dom.domreg.py"...
179578 INFO: Loading module hook "hook-PyQt4.QtGui.py"...
180187 INFO: Loading module hook "hook-boto.py"...
180437 INFO: Loading module hook "hook-pkg_resources.py"...
181735 INFO: Loading module hook "hook-requests.py"...
181782 INFO: Loading module hook "hook-scipy.linalg.py"...
181782 INFO: Loading module hook "hook-gevent.monkey.py"...
181797 INFO: Loading module hook "hook-IPython.py"...
182016 INFO: Excluding import 'Tkinter'
182032 WARNING: Removing import IPython.lib.clipboard from module Tkinter
182032 WARNING: Removing import IPython.lib.inputhook from module Tkinter
182047 INFO: Excluding import 'PySide'
182047 WARNING: Removing import IPython.external.qt_loaders from module PySide
182062 INFO: Excluding import 'gtk'
182078 WARNING: Removing import IPython.lib.inputhook from module gtk
182078 WARNING: Removing import IPython.lib.inputhookgtk from module gtk
182078 INFO: Excluding import 'PyQt5'
182094 WARNING: Removing import IPython.external.qt_loaders from module PyQt5
182110 INFO: Excluding import 'PyQt4'
182110 WARNING: Removing import IPython.external.qt_loaders from module PyQt4.QtSvg
182110 WARNING: Removing import IPython.external.qt_loaders from module PyQt4.QtGui
182125 WARNING: Removing import IPython.external.qt_loaders from module PyQt4.QtCore
182125 WARNING: Removing import IPython.external.qt_loaders from module PyQt4
182125 INFO: Excluding import 'matplotlib'
182157 WARNING: Removing import IPython.core.pylabtools from module matplotlib.pylab
182157 WARNING: Removing import IPython.core.pylabtools from module matplotlib._pylab_helpers
182157 WARNING: Removing import IPython.core.pylabtools from module matplotlib.pyplot
182157 WARNING: Removing import IPython.core.pylabtools from module matplotlib
182157 WARNING: Removing import IPython.core.pylabtools from module matplotlib.figure
182157 INFO: Loading module hook "hook-pytz.py"...
182328 INFO: Loading module hook "hook-pywintypes.py"...
182922 INFO: Loading module hook "hook-setuptools.py"...
182937 INFO: Loading module hook "hook-scipy.special._ellip_harm_2.py"...
182937 INFO: Loading module hook "hook-PIL.SpiderImagePlugin.py"...
182937 INFO: Excluding import 'FixTk'
182953 INFO: Excluding import 'Tkinter'
182969 INFO: Loading module hook "hook-encodings.py"...
184078 INFO: Loading module hook "hook-sqlalchemy.py"...
185328 INFO: Found 4 sqlalchemy hidden imports
185344 WARNING: Hidden import "MySQLdb" not found!
185344 WARNING: Hidden import "psycopg2" not found!
187312 WARNING: Hidden import "sqlalchemy.sql.functions.func" not found!
187328 INFO: Import to be excluded not found: 'sqlalchemy.testing'
187328 INFO: Loading module hook "hook-PyQt4.QtSvg.py"...
187328 INFO: Loading module hook "hook-xml.etree.cElementTree.py"...
187328 INFO: Loading module hook "hook-lib2to3.py"...
187500 INFO: Loading module hook "hook-babel.py"...
188094 INFO: Loading module hook "hook-patsy.py"...
188110 INFO: Loading module hook "hook-numpy.core.py"...
188203 INFO: MKL libraries found when importing numpy. Adding MKL to binaries
188266 INFO: Loading module hook "hook-sqlite3.py"...
188578 INFO: Loading module hook "hook-PyQt4.QtCore.py"...
188735 INFO: Loading module hook "hook-scipy.special._ufuncs.py"...
188735 INFO: Loading module hook "hook-sphinx.py"...
197282 INFO: Loading module hook "hook-win32com.py"...
197562 INFO: Loading module hook "hook-pythoncom.py"...
198453 INFO: checking Tree
198453 INFO: Building Tree because out02-Tree.toc is non existent
198453 INFO: Building Tree out02-Tree.toc
198922 INFO: checking Tree
198922 INFO: Building Tree because out03-Tree.toc is non existent
198922 INFO: Building Tree out03-Tree.toc
198937 INFO: Looking for ctypes DLLs
198937 WARNING: library dllpaths required via ctypes not found
199032 INFO: Analyzing run-time hooks ...
199078 INFO: Including run-time hook 'pyi_rth_pkgres.py'
199078 INFO: Including run-time hook 'pyi_rth__tkinter.py'
199078 INFO: Including run-time hook 'pyi_rth_win32comgenpy.py'
199094 INFO: Including run-time hook 'pyi_rth_traitlets.py'
199094 INFO: Including run-time hook 'pyi_rth_qt4plugins.py'
199094 INFO: Including run-time hook 'pyi_rth_mplconfig.py'
199094 INFO: Including run-time hook 'pyi_rth_mpldata.py'
199203 INFO: Looking for dynamic libraries
202797 WARNING: lib not found: tbb.dll dependency of d:\anaconda2\Library\bin\mkl_tbb_thread.dll
207344 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_x-ww_4ee8bb30\9.0.30729.1.policy
207360 INFO: Searching for assembly x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww ...
207360 INFO: Found manifest C:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943.manifest
207375 INFO: Searching for file mfc90.dll
207391 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfc90.dll
207391 INFO: Searching for file mfc90u.dll
207391 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfc90u.dll
207391 INFO: Searching for file mfcm90.dll
207391 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfcm90.dll
207391 INFO: Searching for file mfcm90u.dll
207391 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfcm90u.dll
207407 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_x-ww_4ee8bb30\9.0.30729.1.policy
207407 INFO: Adding redirect Microsoft.VC90.MFC version (9, 0, 21022, 8) -> (9,0, 30729, 1)
213297 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\message.pyd
213407 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\_device.pyd
213516 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\utils.pyd
213625 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\socket.pyd
213735 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\_poll.pyd
213844 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\context.pyd
213953 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\error.pyd
214062 WARNING: lib not found: libzmq.pyd dependency of d:\anaconda2\lib\site-packages\zmq\backend\cython\_version.pyd
220282 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
220297 INFO: Searching for assembly x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww ...
220297 INFO: Found manifest C:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest
220297 INFO: Searching for file msvcr90.dll
220297 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll
220297 INFO: Searching for file msvcp90.dll
220297 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll
220312 INFO: Searching for file msvcm90.dll
220312 INFO: Found file C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll
220312 INFO: Found C:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy
220312 INFO: Adding redirect Microsoft.VC90.CRT version (9, 0, 30729, 1) -> (9,0, 30729, 1)
220844 INFO: Looking for eggs
220844 INFO: Using Python library d:\anaconda2\python27.dll
220844 INFO: Found binding redirects:
[BindingRedirect(name=u'Microsoft.VC90.CRT', language=None, arch=u'x86', oldVers
ion=(9, 0, 30729, 1), newVersion=(9, 0, 30729, 1), publicKeyToken=u'1fc8b3b9a1e1
8e3b'), BindingRedirect(name=u'Microsoft.VC90.MFC', language=None, arch=u'x86',
oldVersion=(9, 0, 21022, 8), newVersion=(9, 0, 30729, 1), publicKeyToken=u'1fc8b
3b9a1e18e3b'), BindingRedirect(name=u'Microsoft.VC90.CRT', language=None, arch=u
'x86', oldVersion=(9, 0, 21022, 8), newVersion=(9, 0, 30729, 1), publicKeyToken=
u'1fc8b3b9a1e18e3b')]
220907 INFO: Warnings written to D:\DB\fz\build\monitor_rt_quotes\warnmonitor_rt_quotes.txt
223187 INFO: checking PYZ
223187 INFO: Building PYZ because out00-PYZ.toc is non existent
223187 INFO: Building PYZ (ZlibArchive) D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyz
234203 INFO: Building PYZ (ZlibArchive) D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyz completed successfully.
235422 INFO: checking PKG
235422 INFO: Building PKG because out00-PKG.toc is non existent
235422 INFO: Building PKG (CArchive) out00-PKG.pkg
236625 INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.
236625 INFO: Bootloader d:\anaconda2\lib\site-packages\PyInstaller\bootloader\Windows-32bit\run.exe
236641 INFO: checking EXE
236641 INFO: Building EXE because out00-EXE.toc is non existent
236641 INFO: Building EXE from out00-EXE.toc
236641 INFO: Appending archive to EXE D:\DB\fz\build\monitor_rt_quotes\monitor_rt_quotes.exe
238297 INFO: Building EXE from out00-EXE.toc completed successfully.
238328 INFO: checking COLLECT
238328 INFO: Building COLLECT because out00-COLLECT.toc is non existent
238328 INFO: Building COLLECT out00-COLLECT.toc
238469 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
238860 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
238860 INFO: Updating manifest in C:\Documents and Settings\Administrator\Applic
ation Data\pyinstaller\bincache00_py27_32bit\python27.dll
238891 INFO: Updating resource type 24 name 2 language 1033
244141 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
244157 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qgif4.dll
244157 INFO: Updating resource type 24 name 2 language 1033
244187 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
244187 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qkrcodecs4.dll
244187 INFO: Updating resource type 24 name 2 language 1033
245532 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
245532 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\graphicssystems\qtracegraphicssystem4.dll
245532 INFO: Updating resource type 24 name 2 language 1033
245844 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
245860 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qjpeg4.dll
245860 INFO: Updating resource type 24 name 2 language 1033
251375 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
251375 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qjpcodecs4.dll
251375 INFO: Updating resource type 24 name 2 language 1033
251703 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
251703 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qtga4.dll
251703 INFO: Updating resource type 24 name 2 language 1033
251750 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
251750 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qtiff4.dll
251750 INFO: Updating resource type 24 name 2 language 1033
253687 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
253687 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\iconengines\qsvgicon4.d
ll
253703 INFO: Updating resource type 24 name 2 language 1033
255235 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
255250 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qmng4.dll
255250 INFO: Updating resource type 24 name 2 language 1033
263610 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
263625 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\graphicssystems\qglgrap
hicssystem4.dll
263625 INFO: Updating resource type 24 name 2 language 1033
266203 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
266219 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\accessible\qtaccessible
widgets4.dll
266219 INFO: Updating resource type 24 name 2 language 1033
268016 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
268032 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qcncodecs4.dll
268032 INFO: Updating resource type 24 name 2 language 1033
268157 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 3
0729, 1)
268172 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qsvg4.dll
268172 INFO: Updating resource type 24 name 2 language 1033
274782 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
274797 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qtwcodecs4.dll
274797 INFO: Updating resource type 24 name 2 language 1033
275672 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
275687 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qico4.dll
275687 INFO: Updating resource type 24 name 2 language 1033
275969 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
275969 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_hashlib.pyd
275969 INFO: Updating resource type 24 name 2 language 1033
276062 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
276062 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_ctypes.pyd
276062 INFO: Updating resource type 24 name 2 language 1033
276422 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
276437 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_ssl.pyd
276437 INFO: Updating resource type 24 name 2 language 1033
276672 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
276687 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_socket.pyd
276687 INFO: Updating resource type 24 name 2 language 1033
276703 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
276703 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\select.pyd
276703 INFO: Updating resource type 24 name 2 language 1033
276782 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
276797 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\bz2.pyd
276797 INFO: Updating resource type 24 name 2 language 1033
277282 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
277282 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\pyqt4.qtcore.pyd
277282 INFO: Updating resource type 24 name 2 language 1033
277360 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
277360 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\sip.pyd
277360 INFO: Updating resource type 24 name 2 language 1033
277407 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
277407 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\pyqt4.qtsvg.pyd
277407 INFO: Updating resource type 24 name 2 language 1033
278485 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
278485 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\pyqt4.qtgui.pyd
278500 INFO: Updating resource type 24 name 2 language 1033
278594 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
278594 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_bsddb.pyd
278594 INFO: Updating resource type 24 name 2 language 1033
278703 INFO: Redirecting Microsoft.VC90.MFC version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
278703 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
278703 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\win32ui.pyd
278719 INFO: Updating resource type 24 name 2 language 1033
278812 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
278812 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\pyexpat.pyd
278812 INFO: Updating resource type 24 name 2 language 1033
279250 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
279250 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\unicodedata.pyd
279250 INFO: Updating resource type 24 name 2 language 1033
279391 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
279391 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_multiprocessing.pyd
279391 INFO: Updating resource type 24 name 2 language 1033
280703 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
280703 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_tkinter.pyd
280703 INFO: Updating resource type 24 name 2 language 1033
285516 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
285532 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_sqlite3.pyd
285532 INFO: Updating resource type 24 name 2 language 1033
287375 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
287375 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_elementtree.pyd
287391 INFO: Updating resource type 24 name 2 language 1033
291875 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
291875 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qtgui4.dll
291891 INFO: Updating resource type 24 name 2 language 1033
293016 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
293016 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qtcore4.dll
293016 INFO: Updating resource type 24 name 2 language 1033
293157 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
293157 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qtsvg4.dll
293157 INFO: Updating resource type 24 name 2 language 1033
293235 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
293235 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\zlib.dll
293250 INFO: Updating resource type 24 name 2 language 1033
293422 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
293422 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qtopengl4.dll
293422 INFO: Updating resource type 24 name 2 language 1033
293532 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
293532 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\qtxml4.dll
293532 INFO: Updating resource type 24 name 2 language 1033
293937 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\mfc90.dll
294094 INFO: Updating resource type 24 name 1000 language 1033
294953 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\mfc90u.dll
295110 INFO: Updating resource type 24 name 1000 language 1033
295657 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
295672 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\tcl85.dll
295672 INFO: Updating resource type 24 name 2 language 1033
295735 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\tk85.dll
295750 INFO: Updating resource type 24 name 1 language 1033
295766 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
295782 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\tk85.dll
295797 INFO: Updating resource type 24 name 2 language 1033
296266 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
296282 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\libpng16.dll
296282 INFO: Updating resource type 24 name 2 language 1033
296485 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
296485 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\sqlite3.dll
296485 INFO: Updating resource type 24 name 2 language 1033
296985 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 30729, 1) -> (9, 0, 30729, 1)
296985 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\hdf5.dll
296985 INFO: Updating resource type 24 name 2 language 1033
297187 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
297187 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\ssleay32.dll
297187 INFO: Updating resource type 24 name 2 language 1033
297594 INFO: Redirecting Microsoft.VC90.CRT version (9, 0, 21022, 8) -> (9, 0, 30729, 1)
297594 INFO: Updating manifest in C:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\libeay32.dll
297610 INFO: Updating resource type 24 name 2 language 1033
348187 INFO: Building COLLECT out00-COLLECT.toc completed successfully.
D:\DB\fz>