Thanks for your reply. No. I just tried it with the latest Windows XP 32-bit version
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import numpy >>> numpy.__version__ '1.3.0' Same result on the Linux side: ImportError: No module named multiarray. Thanks! On Wed, Nov 4, 2009 at 7:17 AM, Charles R Harris <[email protected]> wrote: > > > On Wed, Nov 4, 2009 at 7:06 AM, Reckoner <[email protected]> wrote: >> >> Here's an example: >> >> On winxp 64-bit: >> >> Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit >> (Intel)] on >> win32 >> Type "help", "copyright", "credits" or "license" for more information. >> >>> import numpy >> >>> import cPickle >> >>> a = numpy.eye(10) >> >>> cPickle.dump(a,open('from32bitxp.pkl','w')) >> >>> import numpy.core.multiarray >> >>> numpy.__version__ >> '1.0.4' >> >>> >> >> On linux 64 bit: >> >> Python 2.5.4 (r254:67916, Feb 5 2009, 19:52:35) >> [GCC 4.1.2 20071124 (Red Hat 4.1.2-42)] on linux2 >> Type "help", "copyright", "credits" or "license" for more information. >> >>> import numpy >> >>> import cPickle >> >>> cPickle.load(open('from32bitxp.pkl')) >> Traceback (most recent call last): >> File "<stdin>", line 1, in <module> >> ImportError: No module named multiarray >> >>> numpy.__version__ >> '1.2.1' >> >>> import numpy.core.multiarray >> >>> >> > > I wonder if this is a numpy version problem. Do you have a windows machine > with a more recent version of numpy on it? > > <snip> > > Chuck > > > _______________________________________________ > NumPy-Discussion mailing list > [email protected] > http://mail.scipy.org/mailman/listinfo/numpy-discussion > > _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
