Armin Rigo wrote: > Hi Raj, > > On Tue, Oct 16, 2007 at 11:30:56AM -0500, Raj wrote: >> Well, for my previous problem, pypy-c on windows worked only when I ran >> it in the installation directory, so I did copped out and ran my programs >> by copying them over. Didn't really find a proper solution to the problem, >> but I assume it involves setting some path variables. > > I'm confused. I tried downloading the file pypy-1.0.0-win32.zip and > looked around (didn't test it on Windows myself though). The zip > contains all the necessary standard library .py files, and I think that > the paths you get in the zip are correct. In other words, if you run > pypy-1.0.0\pypy-c.exe, it should pick up its stdlib at > pypy-1.0.0\share\pypy-1.0\lib-python and > pypy-1.0.0\share\pypy-1.0\pypy\lib. Of course it doesn't work if you > try to move the .exe files elsewhere without also moving the 'share' > subdirectory there. However, as I said this is untested, so something > might be going wrong.
I tested this right now. D:\tmp\pypy-1.0.0-win32\pypy-1.0.0>pypy-c Python 2.4.1 (pypy 1.0.0 build 41438) on win32 Type "help", "copyright", "credits" or "license" for more information. >>>> import pickle >>>> pickle.__file__ 'D:\\tmp\\pypy-1.0.0-win32\\pypy-1.0.0\\share\\pypy-1.0\\lib-python\\modified-2.4.1\\pickle.py' >>>> Tried it from a different folder as well: D:\tmp\pypy-1.0.0-win32\pypy-1.0.0>cd \pypy D:\pypy>\tmp\pypy-1.0.0-win32\pypy-1.0.0\pypy-c.exe Python 2.4.1 (pypy 1.0.0 build 41438) on win32 Type "help", "copyright", "credits" or "license" for more information. >>>> import pickle >>>> pickle.__file__ '\\tmp\\pypy-1.0.0-win32\\pypy-1.0.0\\share\\pypy-1.0\\lib-python\\modified-2.4.1\\pickle.pyc' >>>> Looks all pretty good so far. What else should I try for validation? The basic stuff appears to be in place. cheers - chris -- Christian Tismer :^) <mailto:[EMAIL PROTECTED]> tismerysoft GmbH : Have a break! Take a ride on Python's Johannes-Niemeyer-Weg 9A : *Starship* http://starship.python.net/ 14109 Berlin : PGP key -> http://wwwkeys.pgp.net/ work +49 30 802 86 56 mobile +49 173 24 18 776 fax +49 30 80 90 57 05 PGP 0x57F3BF04 9064 F4E1 D754 C2FF 1619 305B C09C 5A3B 57F3 BF04 whom do you want to sponsor today? http://www.stackless.com/ _______________________________________________ [email protected] http://codespeak.net/mailman/listinfo/pypy-dev
