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 cgoh...@uci.edu To: matplotlib-users matplotlib-users@lists.sourceforge.net Sent: Tue, November 24, 2009 5:55:03 PM Subject: Re: [Matplotlib-users] Unable to import

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 matplotlib-0.99.1.1.win32-py2.6.exe from

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

2009-11-23 Thread Dilip Warrier
: Christoph Gohlke cgoh...@uci.edu To: matplotlib-users matplotlib-users@lists.sourceforge.net 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

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

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

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 alan.is...@gmail.com To: matplotlib-users@lists.sourceforge.net Sent: Mon, November 23, 2009 2:56:55 PM Subject: Re: [Matplotlib-users] Unable to import

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

2009-11-23 Thread Dilip Warrier
to Windows XP. Dilip. - Original Message From: Christoph Gohlke cgoh...@uci.edu To: matplotlib-users matplotlib-users@lists.sourceforge.net 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

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 http://www.cpuid.com/. 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 not

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) http://www.microsoft.com/downloadS/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BFdisplaylang=en. This is usually installed during the installation of Python in the Install For All Users mode. Christoph