From: Falco, O. <ori...@th...> - 2004-07-21 16:29:36
|
OK, here's how my setup.py script looks like: =20 =20 =20 =20 from distutils.core import setup import py2exe =20 setup( #This first parameter is not required, its information #builts a resource that is added to the executables. =20 version =3D "1.0", =20 #targets to build console =3D ["StaffSearch.py" , "StaffDirectorySpider.py"], data_files =3D [ (".", ["StaffDirectorySearchHelp.txt", "StaffSearch.rsrc.py", "About - StaffDirectorySpider.txt"])], =20 ) =20 =20 So, I ran this setup and I got the two subdirectories, build and dist. Inside the dist there are two executables that run fine on my pc, but when I copy them to a pc that doesn't have python I get an error saying that I'm missing a bunch of libraries and something like MVSC or the like.....if I copy the lib.zip along with the executables I get the same error......please help! |