打包python腳本為exe的坎坷經(jīng)歷, by pyinstaller方法

又應(yīng)驗(yàn)了那句歌詞. 不經(jīng)歷風(fēng)雨, 怎么見得了彩虹.

安裝過程略去不提, 僅提示: pip install pyinstaller

打包指令

粗看包里的文檔, 然后開始打包:

打開console

就用了這個命令: pyinstaller monitor_rt_quotes.py

結(jié)果就是比預(yù)期麻煩的多的多的: 干活, 硬盤不停地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的大小(太龐大了, 肥肥肥!!!), 但是結(jié)果很悲劇:

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)

估計是沒有添加必要的打包選項(xiàng)造成的. 繼續(xù)努力.

不死心! 解決問題需要由簡到繁, 先從hellowworld.py做起. 搞定了.

被打包的文件:?helloworld.py, 人人皆知.

打包的命令:?pyinstaller -D helloworld.py

打包的console提示: 見隨后的引述塊

打包發(fā)布exe時的紀(jì)律(注意事項(xiàng)):

很簡單的py腳本. Simple is better than complex. 應(yīng)該遵守Python的規(guī)則.

所以在打包為exe時, 應(yīng)該盡量減少沒有必要的python包的導(dǎo)入. 否則吃的太胖

可以運(yùn)行的exe文件位于:?dist?目錄下, 而不是build目錄下的.

運(yùn)行后的結(jié)果:

D:\DB\fz>pyinstaller -D helloworld.py155INFO:PyInstaller:3.2.1155INFO:Python:2.7.11155INFO:Platform:Windows-XP-5.1.2600-SP3155INFO:wroteD:\DB\fz\helloworld.spec155INFO:UPX is not available.155INFO:Extending PYTHONPATH with paths['D:\\DB','D:\\DB\\fz']155INFO:checking Analysis155INFO:Building Analysis because out00-Analysis.toc is non existent155INFO:Initializing module dependency graph...155INFO:Initializing module graph hooks...312INFO:running Analysis out00-Analysis.toc327INFO:Adding Microsoft.VC90.CRT to dependent assemblies offinalexecutable? required byd:\anaconda2\python.exe327INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy327INFO:Searchingforassembly x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww ...327INFO:Found manifestC:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest327INFO:Searchingforfile msvcr90.dll327INFO:Found fileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll327INFO:Searchingforfile msvcp90.dll327INFO:Found fileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll327INFO:Searchingforfile msvcm90.dll343INFO:Found fileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll343INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy343INFO:Adding redirect Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)484INFO:Caching module hooks...500INFO:AnalyzingD:\DB\fz\helloworld.py500INFO:Loading module hooks...500INFO:Loading module hook"hook-encodings.py"...5405INFO:Loading module hook"hook-httplib.py"...5421INFO:Lookingforctypes DLLs5437INFO:Analyzing run-time hooks ...5452INFO:Lookingfordynamic libraries6155INFO:Lookingforeggs6155INFO:Using Python libraryd:\anaconda2\python27.dll6171INFO:Found bindingredirects:[BindingRedirect(name=u'Microsoft.VC90.CRT', language=None, arch=u'x86', oldVersion=(9,0,21022,8), newVersion=(9,0,30729,1), publicKeyToken=u'1fc8b3b9a1e18e3b')]6187INFO:Warnings written toD:\DB\fz\build\helloworld\warnhelloworld.txt6280INFO:checking PYZ6296INFO:Building PYZ because out00-PYZ.toc is non existent6296INFO:Building PYZ (ZlibArchive)D:\DB\fz\build\helloworld\out00-PYZ.pyz6968INFO:Building PYZ (ZlibArchive)D:\DB\fz\build\helloworld\out00-PYZ.pyz completed successfully.7062INFO:checking PKG7062INFO:Building PKG because out00-PKG.toc is non existent7077INFO:Building PKG (CArchive) out00-PKG.pkg7125INFO:Building PKG (CArchive) out00-PKG.pkg completed successfully.7140INFO:Bootloaderd:\anaconda2\lib\site-packages\PyInstaller\bootloader\Windows-32bit\run.exe7140INFO:checking EXE7155INFO:Building EXE because out00-EXE.toc is non existent7155INFO:Building EXE from out00-EXE.toc7171INFO:Appending archive to EXED:\DB\fz\build\helloworld\helloworld.exe7171INFO:Building EXE from out00-EXE.toc completed successfully.7187INFO:checking COLLECT7202INFO:Building COLLECT because out00-COLLECT.toc is non existent7202INFO:Building COLLECT out00-COLLECT.toc7218INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7375INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7390INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\python27.dll7405INFO:Updating resource type24name2language10337468INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7484INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\unicodedata.pyd7500INFO:Updating resource type24name2language10337546INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7562INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_hashlib.pyd7562INFO:Updating resource type24name2language10337609INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7625INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_ctypes.pyd7640INFO:Updating resource type24name2language10337687INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7702INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_ssl.pyd7718INFO:Updating resource type24name2language10337812INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7827INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_socket.pyd7843INFO:Updating resource type24name2language10337875INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7890INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\select.pyd7905INFO:Updating resource type24name2language10337952INFO:Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)7968INFO:Updating manifestinC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\bz2.pyd7968INFO:Updating resource type24name2language10338046INFO: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 qsuimport crawlerimport 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.argvif 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# 魔法指令的好處就是: 僅用空格分隔, 對于字符串無需加引號

打包后的結(jié)果: exe文件降到了2.8MB, 還算滿意.

運(yùn)行效果展示: (cmd控制臺程序, 可以攜帶2個參數(shù)的)

在spyder的IPython里的效果截圖:

結(jié)果是令人滿意的, 單不完美. 在cmd環(huán)境下運(yùn)行時, 打印輸出的標(biāo)題行為什么沒有與下面的數(shù)據(jù)對齊呢?

成功的pyinstaller打包日志:

D:\DB\fz>pyinstaller -D monitor_rt_quotes.py140INFO:PyInstaller:3.2.1140INFO:Python:2.7.11140INFO:Platform: Windows-XP-5.1.2600-SP3155INFO: wroteD:\DB\fz\monitor_rt_quotes.spec155INFO: UPX is not available.155INFO: Extending PYTHONPATH with paths['D:\\DB','D:\\DB\\fz']155INFO: checking Analysis155INFO: Building Analysis because out00-Analysis.toc is non existent155INFO: Initializing module dependency graph...155INFO: Initializing module graph hooks...296INFO: running Analysis out00-Analysis.toc296INFO: Adding Microsoft.VC90.CRT to dependent assemblies of final executable? required byd:\anaconda2\python.exe296INFO: FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy296INFO: Searching for assembly x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww ...312INFO: Found manifestC:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest312INFO: Searching for file msvcr90.dll312INFO: Found fileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll312INFO: Searching for file msvcp90.dll328INFO: Found fileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll328INFO: Searching for file msvcm90.dll342INFO: Found fileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll358INFO: FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy358INFO: Adding redirect Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)515INFO: Caching module hooks...530INFO: AnalyzingD:\DB\fz\monitor_rt_quotes.py11733INFO: Processing pre-safe import module hook? _xmlplus12390INFO: Loading module hooks...12390INFO: Loading module hook"hook-xml.py"...12546INFO: Loading module hook"hook-cryptography.py"...14265INFO: Processing pre-find module path hook? distutils15905INFO: Processing pre-safe import module hook? six.moves16592INFO: Loading module hook"hook-lxml.etree.py"...16608INFO: Loading module hook"hook-httplib.py"...16625INFO: Loading module hook"hook-pkg_resources.py"...17812INFO: Loading module hook"hook-requests.py"...17828INFO: Loading module hook"hook-encodings.py"...18530INFO: Loading module hook"hook-distutils.py"...18530INFO: Loading module hook"hook-sysconfig.py"...18765INFO: checking Tree18780INFO: Building Tree because out00-Tree.toc is non existent18780INFO: Building Tree out00-Tree.toc18796INFO: Looking for ctypes DLLs18828INFO: Analyzing run-time hooks ...18842INFO: Including run-time hook'pyi_rth_pkgres.py'18875INFO: Looking for dynamic libraries20187INFO: Looking for eggs20203INFO: Using Python libraryd:\anaconda2\python27.dll20203INFO: Found bindingredirects:[BindingRedirect(name=u'Microsoft.VC90.CRT', language=None, arch=u'x86', oldVersion=(9,0,21022,8), newVersion=(9,0,30729,1), publicKeyToken=u'1fc8b3b9a1e18e3b')]20233INFO: Warnings written toD:\DB\fz\build\monitor_rt_quotes\warnmonitor_rt_quotes.txt20453INFO: checking PYZ20453INFO: Building PYZ because out00-PYZ.toc is non existent20467INFO: Building PYZ (ZlibArchive)D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyz22155INFO: Building PYZ (ZlibArchive)D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyz completed successfully.22342INFO: checking PKG22358INFO: Building PKG because out00-PKG.toc is non existent22358INFO: Building PKG (CArchive) out00-PKG.pkg22421INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.22437INFO: Bootloaderd:\anaconda2\lib\site-packages\PyInstaller\bootloader\Windows-32bit\run.exe22437INFO: checking EXE22453INFO: Building EXE because out00-EXE.toc is non existent22453INFO: Building EXE from out00-EXE.toc22467INFO: Appending archive to EXED:\DB\fz\build\monitor_rt_quotes\monitor_rt_quotes.exe22483INFO: Building EXE from out00-EXE.toc completed successfully.22500INFO: checking COLLECT22500INFO: Building COLLECT because out00-COLLECT.toc is non existent22515INFO: Building COLLECT out00-COLLECT.toc22546INFO: Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)22687INFO: Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)22703INFO: Updating manifest inC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\pyexpat.pyd22717INFO: Updating resource type24name2language103323203INFO: Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)23217INFO: Updating manifest inC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\_bsddb.pyd23233INFO: Updating resource type24name2language103323562INFO: Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)23578INFO: Updating manifest inC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\ssleay32.dll23592INFO: Updating resource type24name2language103323640INFO: Redirecting Microsoft.VC90.CRT version (9,0,21022,8) -> (9,0,30729,1)23655INFO: Updating manifest inC:\Documents and Settings\Administrator\Application Data\pyinstaller\bincache00_py27_32bit\libeay32.dll23671INFO: Updating resource type24name2language103323858INFO: Building COLLECT out00-COLLECT.toc completed successfully.D:\DB\fz>

失敗的打包提示logging記錄of pyinstaller:

D:\DB\fz>pyinstallermonitor_rt_quotes.py860INFO:PyInstaller:3.2.1860INFO:Python:2.7.11860INFO:Platform:Windows-XP-5.1.2600-SP3860INFO:wroteD:\DB\fz\monitor_rt_quotes.spec860INFO:UPXisnotavailable.875INFO:ExtendingPYTHONPATHwithpaths['D:\\DB','D:\\DB\\fz']875INFO:checkingAnalysis891INFO:BuildingAnalysisbecauseout00-Analysis.tocisnonexistent891INFO:Initializingmoduledependencygraph...891INFO:Initializingmodulegraphhooks...1094INFO:runningAnalysisout00-Analysis.toc1157INFO:AddingMicrosoft.VC90.CRTtodependentassembliesoffinalexecutablerequiredbyd:\anaconda2\python.exe1172INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy1172INFO:Searchingforassemblyx86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww...1172INFO:FoundmanifestC:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest1172INFO:Searchingforfilemsvcr90.dll1172INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll1187INFO:Searchingforfilemsvcp90.dll1187INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll1187INFO:Searchingforfilemsvcm90.dll1187INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll1187INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy1187INFO:AddingredirectMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)1375INFO:Cachingmodulehooks...1391INFO:AnalyzingD:\DB\fz\monitor_rt_quotes.py17125INFO:Processingpre-safeimportmodulehook_xmlplus21282INFO:Processingpre-findmodulepathhookdistutils27562INFO:Processingpre-findmodulepathhooksite27562INFO:site:retargetingtofake-dir'd:\\anaconda2\\lib\\site-packages\\Py

Installer\\fake-modules'27625INFO:Processingpre-safeimportmodulehookwin32com32297INFO:Processingpre-safeimportmodulehooksix.moves133203INFO:Loadingmodulehooks...133203INFO:Loadingmodulehook"hook-shelve.py"...133203WARNING:Hiddenimport"dbm.ndbm"notfound!133203WARNING:Hiddenimport"dbm.dumb"notfound!133203WARNING:Hiddenimport"dbm.gnu"notfound!133203INFO:Loadingmodulehook"hook-distutils.py"...133250INFO:Loadingmodulehook"hook-sysconfig.py"...133250INFO:Loadingmodulehook"hook-xml.py"...133266INFO:Loadingmodulehook"hook-PIL.py"...133266INFO:Excludingimport'FixTk'133282INFO:Excludingimport'Tkinter'133282INFO:Excludingimport'PyQt5'133297WARNING:RemovingimportPIL.ImageQtfrommodulePyQt5133297INFO:Excludingimport'PySide'133312WARNING:RemovingimportPIL.ImageQtfrommodulePySide133312INFO:Excludingimport'PyQt4'133312WARNING:RemovingimportPIL.ImageQtfrommodulePyQt4.QtGui133328WARNING:RemovingimportPIL.ImageQtfrommodulePyQt4.QtCore133328INFO:Loadingmodulehook"hook-scipy.sparse.csgraph.py"...133344INFO:Loadingmodulehook"hook-zmq.py"...137032INFO:Excludingimport'zmq.libzmq'137047WARNING:Removingimportzmqfrommodulezmq.libzmq137047INFO:Loadingmodulehook"hook-openpyxl.py"...137110INFO:Loadingmodulehook"hook-cryptography.py"...141657INFO:Loadingmodulehook"hook-pycparser.py"...141985INFO:Loadingmodulehook"hook-scipy.io.matlab.py"...142000INFO:Loadingmodulehook"hook-jinja2.py"...142078INFO:Loadingmodulehook"hook-lxml.etree.py"...142094INFO:Loadingmodulehook"hook-httplib.py"...142094INFO:Loadingmodulehook"hook-tables.py"...142110INFO:Loadingmodulehook"hook-pydoc.py"...142110INFO:Excludingimport'Tkinter'142125WARNING:RemovingimportpydocfrommoduleTkinter142125INFO:Loadingmodulehook"hook-pygments.py"...151657INFO:Loadingmodulehook"hook-PyQt4.py"...151672INFO:Loadingmodulehook"hook-jsonschema.py"...151719INFO:Loadingmodulehook"hook-_tkinter.py"...152266INFO:checkingTree152282INFO:BuildingTreebecauseout00-Tree.tocisnonexistent152282INFO:BuildingTreeout00-Tree.toc152969INFO:checkingTree152969INFO:BuildingTreebecauseout01-Tree.tocisnonexistent152969INFO:BuildingTreeout01-Tree.toc153078INFO:Loadingmodulehook"hook-docutils.py"...155969INFO:Loadingmodulehook"hook-matplotlib.backends.py"...157016INFO:Matplotlibbackend"GTK":ignoredGtk*backendrequirespygtktobeinstalled.157828INFO:Matplotlibbackend"GTKAgg":ignoredGtk*backendrequirespygtktobeinstalled.158328INFO:Matplotlibbackend"GTKCairo":ignoredNomodulenamedgtk159157INFO:Matplotlibbackend"MacOSX":ignoredcannotimportname_macosx159985INFO:Matplotlibbackend"Qt4Agg":added160797INFO:Matplotlibbackend"Qt5Agg":added161812INFO:Matplotlibbackend"TkAgg":added162828INFO:Matplotlibbackend"WX":ignoredMatplotlibbackend_wxandbackend_wxaggrequirewxPython>=2.8.12163625INFO:Matplotlibbackend"WXAgg":ignoredMatplotlibbackend_wxandbackend_wxaggrequirewxPython>=2.8.12164266INFO:Matplotlibbackend"GTK3Cairo":ignoredGtk3backendrequirespygobjecttobeinstalled.165078INFO:Matplotlibbackend"GTK3Agg":ignoredGtk3backendrequirespygobjecttobeinstalled.166469INFO:Matplotlibbackend"WebAgg":added168032INFO:Matplotlibbackend"nbAgg":added168782INFO:Matplotlibbackend"agg":added169360INFO:Matplotlibbackend"cairo":ignoredCairobackendrequiresthatcairocffiorpycairoisinstalled.169860INFO:Matplotlibbackend"emf":ignoredNomodulenamedbackend_emf170375INFO:Matplotlibbackend"gdk":ignoredNomodulenamedgobject171344INFO:Matplotlibbackend"pdf":added174547INFO:Matplotlibbackend"pgf":added175437INFO:Matplotlibbackend"ps":added176312INFO:Matplotlibbackend"svg":added177094INFO:Matplotlibbackend"template":added177875INFO:Loadingmodulehook"hook-PIL.Image.py"...178969INFO:Loadingmodulehook"hook-matplotlib.py"...179578INFO:Loadingmodulehook"hook-xml.dom.domreg.py"...179578INFO:Loadingmodulehook"hook-PyQt4.QtGui.py"...180187INFO:Loadingmodulehook"hook-boto.py"...180437INFO:Loadingmodulehook"hook-pkg_resources.py"...181735INFO:Loadingmodulehook"hook-requests.py"...181782INFO:Loadingmodulehook"hook-scipy.linalg.py"...181782INFO:Loadingmodulehook"hook-gevent.monkey.py"...181797INFO:Loadingmodulehook"hook-IPython.py"...182016INFO:Excludingimport'Tkinter'182032WARNING:RemovingimportIPython.lib.clipboardfrommoduleTkinter182032WARNING:RemovingimportIPython.lib.inputhookfrommoduleTkinter182047INFO:Excludingimport'PySide'182047WARNING:RemovingimportIPython.external.qt_loadersfrommodulePySide182062INFO:Excludingimport'gtk'182078WARNING:RemovingimportIPython.lib.inputhookfrommodulegtk182078WARNING:RemovingimportIPython.lib.inputhookgtkfrommodulegtk182078INFO:Excludingimport'PyQt5'182094WARNING:RemovingimportIPython.external.qt_loadersfrommodulePyQt5182110INFO:Excludingimport'PyQt4'182110WARNING:RemovingimportIPython.external.qt_loadersfrommodulePyQt4.QtSvg182110WARNING:RemovingimportIPython.external.qt_loadersfrommodulePyQt4.QtGui182125WARNING:RemovingimportIPython.external.qt_loadersfrommodulePyQt4.QtCore182125WARNING:RemovingimportIPython.external.qt_loadersfrommodulePyQt4182125INFO:Excludingimport'matplotlib'182157WARNING:RemovingimportIPython.core.pylabtoolsfrommodulematplotlib.pylab182157WARNING:RemovingimportIPython.core.pylabtoolsfrommodulematplotlib._pylab_helpers182157WARNING:RemovingimportIPython.core.pylabtoolsfrommodulematplotlib.pyplot182157WARNING:RemovingimportIPython.core.pylabtoolsfrommodulematplotlib182157WARNING:RemovingimportIPython.core.pylabtoolsfrommodulematplotlib.figure182157INFO:Loadingmodulehook"hook-pytz.py"...182328INFO:Loadingmodulehook"hook-pywintypes.py"...182922INFO:Loadingmodulehook"hook-setuptools.py"...182937INFO:Loadingmodulehook"hook-scipy.special._ellip_harm_2.py"...182937INFO:Loadingmodulehook"hook-PIL.SpiderImagePlugin.py"...182937INFO:Excludingimport'FixTk'182953INFO:Excludingimport'Tkinter'182969INFO:Loadingmodulehook"hook-encodings.py"...184078INFO:Loadingmodulehook"hook-sqlalchemy.py"...185328INFO:Found4sqlalchemyhiddenimports185344WARNING:Hiddenimport"MySQLdb"notfound!185344WARNING:Hiddenimport"psycopg2"notfound!187312WARNING:Hiddenimport"sqlalchemy.sql.functions.func"notfound!187328INFO:Importtobeexcludednotfound:'sqlalchemy.testing'187328INFO:Loadingmodulehook"hook-PyQt4.QtSvg.py"...187328INFO:Loadingmodulehook"hook-xml.etree.cElementTree.py"...187328INFO:Loadingmodulehook"hook-lib2to3.py"...187500INFO:Loadingmodulehook"hook-babel.py"...188094INFO:Loadingmodulehook"hook-patsy.py"...188110INFO:Loadingmodulehook"hook-numpy.core.py"...188203INFO:MKLlibrariesfoundwhenimportingnumpy.AddingMKLtobinaries188266INFO:Loadingmodulehook"hook-sqlite3.py"...188578INFO:Loadingmodulehook"hook-PyQt4.QtCore.py"...188735INFO:Loadingmodulehook"hook-scipy.special._ufuncs.py"...188735INFO:Loadingmodulehook"hook-sphinx.py"...197282INFO:Loadingmodulehook"hook-win32com.py"...197562INFO:Loadingmodulehook"hook-pythoncom.py"...198453INFO:checkingTree198453INFO:BuildingTreebecauseout02-Tree.tocisnonexistent198453INFO:BuildingTreeout02-Tree.toc198922INFO:checkingTree198922INFO:BuildingTreebecauseout03-Tree.tocisnonexistent198922INFO:BuildingTreeout03-Tree.toc198937INFO:LookingforctypesDLLs198937WARNING:librarydllpathsrequiredviactypesnotfound199032INFO:Analyzingrun-timehooks...199078INFO:Includingrun-timehook'pyi_rth_pkgres.py'199078INFO:Includingrun-timehook'pyi_rth__tkinter.py'199078INFO:Includingrun-timehook'pyi_rth_win32comgenpy.py'199094INFO:Includingrun-timehook'pyi_rth_traitlets.py'199094INFO:Includingrun-timehook'pyi_rth_qt4plugins.py'199094INFO:Includingrun-timehook'pyi_rth_mplconfig.py'199094INFO:Includingrun-timehook'pyi_rth_mpldata.py'199203INFO:Lookingfordynamiclibraries202797WARNING:libnotfound:tbb.dlldependencyofd:\anaconda2\Library\bin\mkl_tbb_thread.dll207344INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_x-ww_4ee8bb30\9.0.30729.1.policy207360INFO:Searchingforassemblyx86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww...207360INFO:FoundmanifestC:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943.manifest207375INFO:Searchingforfilemfc90.dll207391INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfc90.dll207391INFO:Searchingforfilemfc90u.dll207391INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfc90u.dll207391INFO:Searchingforfilemfcm90.dll207391INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfcm90.dll207391INFO:Searchingforfilemfcm90u.dll207391INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_405b0943\mfcm90u.dll207407INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_x-ww_4ee8bb30\9.0.30729.1.policy207407INFO:AddingredirectMicrosoft.VC90.MFCversion(9,0,21022,8)->(9,0,30729,1)213297WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\message.pyd213407WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\_device.pyd213516WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\utils.pyd213625WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\socket.pyd213735WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\_poll.pyd213844WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\context.pyd213953WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\error.pyd214062WARNING:libnotfound:libzmq.pyddependencyofd:\anaconda2\lib\site-packages\zmq\backend\cython\_version.pyd220282INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy220297INFO:Searchingforassemblyx86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww...220297INFO:FoundmanifestC:\WINDOWS\WinSxS\Manifests\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e.manifest220297INFO:Searchingforfilemsvcr90.dll220297INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcr90.dll220297INFO:Searchingforfilemsvcp90.dll220297INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcp90.dll220312INFO:Searchingforfilemsvcm90.dll220312INFO:FoundfileC:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.1_x-ww_6f74963e\msvcm90.dll220312INFO:FoundC:\WINDOWS\WinSxS\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f75\9.0.30729.1.policy220312INFO:AddingredirectMicrosoft.VC90.CRTversion(9,0,30729,1)->(9,0,30729,1)220844INFO:Lookingforeggs220844INFO:UsingPythonlibraryd:\anaconda2\python27.dll220844INFO:Foundbindingredirects:[BindingRedirect(name=u'Microsoft.VC90.CRT',language=None,arch=u'x86',oldVersion=(9,0,30729,1),newVersion=(9,0,30729,1),publicKeyToken=u'1fc8b3b9a1e18e3b'),BindingRedirect(name=u'Microsoft.VC90.MFC',language=None,arch=u'x86',oldVersion=(9,0,21022,8),newVersion=(9,0,30729,1),publicKeyToken=u'1fc8b3b9a1e18e3b'),BindingRedirect(name=u'Microsoft.VC90.CRT',language=None,arch=u'x86',oldVersion=(9,0,21022,8),newVersion=(9,0,30729,1),publicKeyToken=u'1fc8b3b9a1e18e3b')]220907INFO:WarningswrittentoD:\DB\fz\build\monitor_rt_quotes\warnmonitor_rt_quotes.txt223187INFO:checkingPYZ223187INFO:BuildingPYZbecauseout00-PYZ.tocisnonexistent223187INFO:BuildingPYZ(ZlibArchive)D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyz234203INFO:BuildingPYZ(ZlibArchive)D:\DB\fz\build\monitor_rt_quotes\out00-PYZ.pyzcompletedsuccessfully.235422INFO:checkingPKG235422INFO:BuildingPKGbecauseout00-PKG.tocisnonexistent235422INFO:BuildingPKG(CArchive)out00-PKG.pkg236625INFO:BuildingPKG(CArchive)out00-PKG.pkgcompletedsuccessfully.236625INFO:Bootloaderd:\anaconda2\lib\site-packages\PyInstaller\bootloader\Windows-32bit\run.exe236641INFO:checkingEXE236641INFO:BuildingEXEbecauseout00-EXE.tocisnonexistent236641INFO:BuildingEXEfromout00-EXE.toc236641INFO:AppendingarchivetoEXED:\DB\fz\build\monitor_rt_quotes\monitor_rt_quotes.exe238297INFO:BuildingEXEfromout00-EXE.toccompletedsuccessfully.238328INFO:checkingCOLLECT238328INFO:BuildingCOLLECTbecauseout00-COLLECT.tocisnonexistent238328INFO:BuildingCOLLECTout00-COLLECT.toc238469INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)238860INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)238860INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\python27.dll238891INFO:Updatingresourcetype24name2language1033244141INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)244157INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qgif4.dll244157INFO:Updatingresourcetype24name2language1033244187INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)244187INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qkrcodecs4.dll244187INFO:Updatingresourcetype24name2language1033245532INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)245532INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\graphicssystems\qtracegraphicssystem4.dll245532INFO:Updatingresourcetype24name2language1033245844INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)245860INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qjpeg4.dll245860INFO:Updatingresourcetype24name2language1033251375INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)251375INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qjpcodecs4.dll251375INFO:Updatingresourcetype24name2language1033251703INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)251703INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qtga4.dll251703INFO:Updatingresourcetype24name2language1033251750INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)251750INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qtiff4.dll251750INFO:Updatingresourcetype24name2language1033253687INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)253687INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\iconengines\qsvgicon4.dll253703INFO:Updatingresourcetype24name2language1033255235INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)255250INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qmng4.dll255250INFO:Updatingresourcetype24name2language1033263610INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)263625INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\graphicssystems\qglgraphicssystem4.dll263625INFO:Updatingresourcetype24name2language1033266203INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)266219INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\accessible\qtaccessiblewidgets4.dll266219INFO:Updatingresourcetype24name2language1033268016INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)268032INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qcncodecs4.dll268032INFO:Updatingresourcetype24name2language1033268157INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)268172INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qsvg4.dll268172INFO:Updatingresourcetype24name2language1033274782INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)274797INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\codecs\qtwcodecs4.dll274797INFO:Updatingresourcetype24name2language1033275672INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)275687INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qt4_plugins\imageformats\qico4.dll275687INFO:Updatingresourcetype24name2language1033275969INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)275969INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_hashlib.pyd275969INFO:Updatingresourcetype24name2language1033276062INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)276062INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_ctypes.pyd276062INFO:Updatingresourcetype24name2language1033276422INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)276437INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_ssl.pyd276437INFO:Updatingresourcetype24name2language1033276672INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)276687INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_socket.pyd276687INFO:Updatingresourcetype24name2language1033276703INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)276703INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\select.pyd276703INFO:Updatingresourcetype24name2language1033276782INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)276797INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\bz2.pyd276797INFO:Updatingresourcetype24name2language1033277282INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)277282INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\pyqt4.qtcore.pyd277282INFO:Updatingresourcetype24name2language1033277360INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)277360INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\sip.pyd277360INFO:Updatingresourcetype24name2language1033277407INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)277407INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\pyqt4.qtsvg.pyd277407INFO:Updatingresourcetype24name2language1033278485INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)278485INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\pyqt4.qtgui.pyd278500INFO:Updatingresourcetype24name2language1033278594INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)278594INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_bsddb.pyd278594INFO:Updatingresourcetype24name2language1033278703INFO:RedirectingMicrosoft.VC90.MFCversion(9,0,21022,8)->(9,0,30729,1)278703INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)278703INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\win32ui.pyd278719INFO:Updatingresourcetype24name2language1033278812INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)278812INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\pyexpat.pyd278812INFO:Updatingresourcetype24name2language1033279250INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)279250INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\unicodedata.pyd279250INFO:Updatingresourcetype24name2language1033279391INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)279391INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_multiprocessing.pyd279391INFO:Updatingresourcetype24name2language1033280703INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)280703INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_tkinter.pyd280703INFO:Updatingresourcetype24name2language1033285516INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)285532INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_sqlite3.pyd285532INFO:Updatingresourcetype24name2language1033287375INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)287375INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\_elementtree.pyd287391INFO:Updatingresourcetype24name2language1033291875INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)291875INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qtgui4.dll291891INFO:Updatingresourcetype24name2language1033293016INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)293016INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qtcore4.dll293016INFO:Updatingresourcetype24name2language1033293157INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)293157INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qtsvg4.dll293157INFO:Updatingresourcetype24name2language1033293235INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)293235INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\zlib.dll293250INFO:Updatingresourcetype24name2language1033293422INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)293422INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qtopengl4.dll293422INFO:Updatingresourcetype24name2language1033293532INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)293532INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\qtxml4.dll293532INFO:Updatingresourcetype24name2language1033293937INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\mfc90.dll294094INFO:Updatingresourcetype24name1000language1033294953INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\mfc90u.dll295110INFO:Updatingresourcetype24name1000language1033295657INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)295672INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\tcl85.dll295672INFO:Updatingresourcetype24name2language1033295735INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\tk85.dll295750INFO:Updatingresourcetype24name1language1033295766INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)295782INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\tk85.dll295797INFO:Updatingresourcetype24name2language1033296266INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)296282INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\libpng16.dll296282INFO:Updatingresourcetype24name2language1033296485INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)296485INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\sqlite3.dll296485INFO:Updatingresourcetype24name2language1033296985INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,30729,1)->(9,0,30729,1)296985INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\hdf5.dll296985INFO:Updatingresourcetype24name2language1033297187INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)297187INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\ssleay32.dll297187INFO:Updatingresourcetype24name2language1033297594INFO:RedirectingMicrosoft.VC90.CRTversion(9,0,21022,8)->(9,0,30729,1)297594INFO:UpdatingmanifestinC:\DocumentsandSettings\Administrator\ApplicationData\pyinstaller\bincache00_py27_32bit\libeay32.dll297610INFO:Updatingresourcetype24name2language1033348187INFO:BuildingCOLLECTout00-COLLECT.toccompletedsuccessfully.D:\DB\fz>

duanqs

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子按价,更是在濱河造成了極大的恐慌腮出,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,029評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件低葫,死亡現(xiàn)場離奇詭異录别,居然都是意外死亡畏鼓,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,395評論 3 385
  • 文/潘曉璐 我一進(jìn)店門诈豌,熙熙樓的掌柜王于貴愁眉苦臉地迎上來仆救,“玉大人,你說我怎么就攤上這事矫渔⊥危” “怎么了?”我有些...
    開封第一講書人閱讀 157,570評論 0 348
  • 文/不壞的土叔 我叫張陵庙洼,是天一觀的道長顿痪。 經(jīng)常有香客問我镊辕,道長,這世上最難降的妖魔是什么蚁袭? 我笑而不...
    開封第一講書人閱讀 56,535評論 1 284
  • 正文 為了忘掉前任征懈,我火速辦了婚禮,結(jié)果婚禮上揩悄,老公的妹妹穿的比我還像新娘卖哎。我一直安慰自己,他們只是感情好虏束,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,650評論 6 386
  • 文/花漫 我一把揭開白布棉饶。 她就那樣靜靜地躺著,像睡著了一般镇匀。 火紅的嫁衣襯著肌膚如雪照藻。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,850評論 1 290
  • 那天汗侵,我揣著相機(jī)與錄音幸缕,去河邊找鬼。 笑死晰韵,一個胖子當(dāng)著我的面吹牛发乔,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播雪猪,決...
    沈念sama閱讀 39,006評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼栏尚,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了只恨?” 一聲冷哼從身側(cè)響起译仗,我...
    開封第一講書人閱讀 37,747評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎官觅,沒想到半個月后纵菌,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,207評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡休涤,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,536評論 2 327
  • 正文 我和宋清朗相戀三年咱圆,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片功氨。...
    茶點(diǎn)故事閱讀 38,683評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡序苏,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出疑故,到底是詐尸還是另有隱情杠览,我是刑警寧澤,帶...
    沈念sama閱讀 34,342評論 4 330
  • 正文 年R本政府宣布纵势,位于F島的核電站踱阿,受9級特大地震影響管钳,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜软舌,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,964評論 3 315
  • 文/蒙蒙 一才漆、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧佛点,春花似錦醇滥、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,772評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至演闭,卻和暖如春不跟,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背米碰。 一陣腳步聲響...
    開封第一講書人閱讀 32,004評論 1 266
  • 我被黑心中介騙來泰國打工窝革, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人吕座。 一個月前我還...
    沈念sama閱讀 46,401評論 2 360
  • 正文 我出身青樓虐译,卻偏偏與公主長得像,于是被迫代替她去往敵國和親吴趴。 傳聞我的和親對象是個殘疾皇子漆诽,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,566評論 2 349

推薦閱讀更多精彩內(nèi)容