Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-30 Thread Dilip Warrier
Thanks, Christoph. I confirmed that this build solves the problem. Dilip. - Original Message From: Christoph Gohlke To: matplotlib-users Sent: Tue, November 24, 2009 5:55:03 PM Subject: Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows I was able to reproduce your

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-24 Thread Christoph Gohlke
I was able to reproduce your problem on one of our Pentium III computers and traced it down to a bug in the _path module initialization function (will file a separate bug report). Please try again installing the updated from . Christoph

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-24 Thread Dilip Warrier
: matplotlib-users Sent: Mon, November 23, 2009 11:43:35 PM Subject: Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows Should have asked this before: Does your computer's CPU have SSE2 extensions? You can use CPU-Z <http://www.cpuid.com/>. It is OK that Dependency Walk

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-23 Thread Christoph Gohlke
Should have asked this before: Does your computer's CPU have SSE2 extensions? You can use CPU-Z . It is OK that Dependency Walker does not find MSVCR90.DLL and MSVCP90.DLL for a PYD extension. The extension will use whatever VC90.CRT python26.dll uses at runtime. I am no

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-23 Thread Dilip Warrier
to be restricted to Windows XP. Dilip. - Original Message From: Christoph Gohlke To: matplotlib-users Sent: Mon, November 23, 2009 2:55:51 PM Subject: Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows Please check if there are python26.dll or "Microsoft.VC90.CRT

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-23 Thread Dilip Warrier
Yes. import numpy, matplotlib works fine. import matplotlib.pylab does not work. Thanks, Dilip. - Original Message From: Alan G Isaac To: matplotlib-users@lists.sourceforge.net Sent: Mon, November 23, 2009 2:56:55 PM Subject: Re: [Matplotlib-users] Unable to import matplotlib.pylab in

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-23 Thread Alan G Isaac
Just to be clear: import numpy, matplotlib works fine? Alan Isaac -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-23 Thread Christoph Gohlke
Please check if there are python26.dll or "Microsoft.VC90.CRT.manifest" files left in your Python directory. If yes, remove those files. If that does not help, run Dependency Walker on python26.dll (should be in your system folder), enable "Full Paths" view and report the MSVCR90.DLL path. It s

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-23 Thread Dilip Warrier
--- Original Message From: Christoph Gohlke To: matplotlib-users Sent: Sun, November 22, 2009 10:08:21 PM Subject: Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows Try installing the Microsoft Visual C++ 2008 Redistributable Package (x86) <http://www.microsoft.com/downloa

Re: [Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-22 Thread Christoph Gohlke
Try installing the Microsoft Visual C++ 2008 Redistributable Package (x86) . This is usually installed during the installation of Python in the "Install For All Users" mode. Christoph --

[Matplotlib-users] Unable to import matplotlib.pylab in Windows

2009-11-22 Thread Dilip Warrier
Hi, all. I am unable to import matplotlib.pylab. When I run the following command: python -c "import matplotlib.pylab" the application crashes with a windows error message. Running with the -v option shows that the application crashes at the following stage: import matplotlib.transforms >From