Hello !
I have tried a lot to create my sis file but I couldn't. I am receiving several logs related to missing módules but I dont know how to include them.
I need some help. What I did until now:
1) First, I tried to use my old script (it used to work with python 1.9.2). My code is located at src and I have a default.py.
default.py is below:Code:@echo off REM %1 is the version number, like 1.4.2 IF "%1" EQU "" GOTO error SET PYTHON=C:\Python25\python.exe SET APPNAME=Wordmobi SET CAPBLS=NetworkServices+LocalServices+ReadUserData+WriteUserData+UserEnvironment SET SRCDIR=src SET TXTFILE=README SET TMPDIR=src.tmp SET ICON=wordmobi.svg SET OPTS=--verbose --version="%1" --appname="%APPNAME%" ^ --textfile="%TXTFILE%" --icon="%ICON%" ^ --caps="%CAPBLS%" "%TMPDIR%" echo "Generating for Python 1.9.2..." rmdir /s /q %TMPDIR% mkdir %TMPDIR%\extras\data\python copy %SRCDIR%\*.py %TMPDIR%\extras\data\python move %TMPDIR%\extras\data\python\default.py %TMPDIR%\ %PYTHON% ensymble.py py2sis %OPTS% --extrasdir=extras --heapsize=4k,5M "%APPNAME%-%1-py19.sis" goto end :error echo Sintaxe: %0 version :end
2) I tried to use ensymble_gui.pyw, specifying just my src directory, but sis can not be generated.Code:import e32 import sys if float(e32.pys60_version[:3]) >= 1.9: sys.path.append("c:\\data\\python") import wordmobi wordmobi.WordMobi().run()
In both cases, there are warning in the screen related to missing modules (below). Sis is generate and may be installed but it does not work (we have missing modules).
I have already read the release notes for 1.9.4, where the statement "We'll improve the Ensymble packaging tool to automatically bundle modules not included in the base runtime into your application SIS, as well as specify how a module author can distribute their module to other developers so that the module can be easily used." say something about this but I am certainly missing something.Code:WARNING: Dependent module 'tty' not found WARNING: Dependent module '_sha512' not found WARNING: Dependent module 'aifc' not found WARNING: Dependent module 'whichdb' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'sgmllib' not found WARNING: Dependent module 'pprint' not found WARNING: Dependent module 'unittest' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'SocketServer' not found WARNING: Dependent module 'repr' not found WARNING: Dependent module 'email' not found WARNING: Dependent module '_lsprof' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module '_MozillaCookieJar' not found WARNING: Dependent module 'bisect' not found WARNING: Dependent module 'cmd' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'pydoc' not found WARNING: Dependent module 'sha' not found WARNING: Dependent module 'token' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'shlex' not found WARNING: Dependent module 'dummy_threading' not found WARNING: Dependent module 'dis' not found WARNING: Dependent module 'fcntl' not found WARNING: Dependent module 'asyncore' not found WARNING: Dependent module 'locale' not found WARNING: Dependent module 'chunk' not found WARNING: Dependent module 'popen2' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'BaseHTTPServer' not found WARNING: Dependent module 'calendar' not found WARNING: Dependent module 'bdb' not found WARNING: Dependent module 'py_compile' not found WARNING: Dependent module 'new' not found WARNING: Dependent module 'formatter' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'cgi' not found WARNING: Dependent module 'optparse' not found WARNING: Dependent module 'inspect' not found WARNING: Dependent module 'fnmatch' not found WARNING: Dependent module 'md5' not found WARNING: Dependent module '_locale' not found WARNING: Dependent module 'logging' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'opcode' not found WARNING: Dependent module 'doctest' not found WARNING: Dependent module 'pstats' not found WARNING: Dependent module 'pdb' not found WARNING: Dependent module 'base64' not found WARNING: Dependent module 'sensor_defs' not found WARNING: Dependent module 'dummy_thread' not found WARNING: Dependent module 'email' not found WARNING: Dependent module '_LWPCookieJar' not found WARNING: Dependent module 'pkgutil' not found WARNING: Dependent module 'binascii' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'symbol' not found WARNING: Dependent module '_sha256' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'Cookie' not found WARNING: Dependent module 'tokenize' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'unicodedata' not found WARNING: Dependent module 'anydbm' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'uu' not found WARNING: Dependent module '_csv' not found WARNING: Dependent module 'markupbase' not found WARNING: Dependent module 'multifile' not found WARNING: Dependent module 'mimetools' not found WARNING: Dependent module 'parser' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'shutil' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'symtable' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'gettext' not found WARNING: Dependent module '_ssl' not found WARNING: Dependent module 'rfc822' not found WARNING: Dependent module 'glob' not found WARNING: Dependent module 'textwrap' not found WARNING: Dependent module 'codeop' not found WARNING: Dependent module 'email' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'email' not found WARNING: Dependent module '_symtable' not found WARNING: Dependent module 'difflib' not found WARNING: Dependent module 'compiler' not found WARNING: Dependent module 'htmllib' not found WARNING: Dependent module 'gzip' not found WARNING: Dependent module 'hmac' not found
Any tips ?
Marcelo Barros


Reply With Quote




