![]() |
|
#1
|
|||
|
|||
Found out anything regarding this?
The dependencies I get when publishing the 3 line script is the following: viz_python.dll python24.dll osgDB.dll MSVCP71.dll osg.dll osgText.dll osgParticle.dll MSVCR71.dll vizcore.dll Producer.dll OpenThreadsWin32.dll transform.dll osgUtil.dll codecs.pyc minidom.pyc sre_parse.pyc HTMLDOMImplementation.pyc traceback.pyc domreg.pyc MessageSource.pyc __init__.pyc Range.pyc viz.pyc dis.pyc UserDict.pyc sre_constants.pyc token.pyc __init__.pyc re.pyc types.pyc sre_compile.pyc linecache.pyc testfile.py random.pyc cp1252.pyc tokenize.pyc xmlbuilder.pyc gettext.pyc stat.pyc sre.pyc locale.pyc vizmat.pyc inspect.pyc site.pyc FtCore.pyc __init__.pyc __init__.pyc DOMImplementation.pyc aliases.pyc NodeFilter.pyc ntpath.pyc opcode.pyc minicompat.pyc os.pyc copy_reg.pyc string.pyc warnings.pyc copy.pyc vizact.pyc Is this the same list that you get for your exe that is working? |
#2
|
|||
|
|||
You probably have another Python installation on your computer that is interfering with the Vizard installation. Run the following script and post the output. If the output contains any directories that are outside the Vizard directory, then that is most likely the problem.
Code:
import sys for p in sys.path: print p |
#3
|
|||
|
|||
Here's what I get. Seems to be the expected normal result, everything is under Vizard.
C:\Program Files\WorldViz\Vizard30\python C:\Program Files\WorldViz\Vizard30\bin\python24.zip C:\Program Files\WorldViz\Vizard30\bin\lib C:\Program Files\WorldViz\Vizard30\bin\DLLs C:\Program Files\WorldViz\Vizard30\bin\lib\plat-win C:\Program Files\WorldViz\Vizard30\bin\lib\lib-tk C:\Program Files\WorldViz\Vizard30\bin C:\Program Files\WorldViz\Vizard30\bin\lib\site-packages C:\Program Files\WorldViz\Vizard30\bin\lib\win32 For some reason I seem to have failed to mention that I'm running Vizard under Windows Vista. That may or may not have anything to do with this problem. |
#4
|
|||
|
|||
In that case you have a corrupted version of Vizard. Some of the files in the list you previously posted are not included with Vizard (MessageSource.py, HTMLDOMImplementation.py, DOMImplementation.py). I would recommend that you uninstall Vizard, delete the entire Vizard directory, then reinstall it. Hopefully this will fix the issue.
|
![]() |
|
|