[Matplotlib-users] Ubuntu Hardy and matplotlib

2008-05-30 Thread Marjolaine Rouault
Hi, I am not managing to ge matplotlib to work with the new Ubuntu realease hardy 8.04. After I install the python-matplotlib package, I am not able to list my modules in the help() section and I can also not import pylab. As anyone ha that problem and found a solution? Thanks. -- This

[Matplotlib-users] Legend for a scatter plot based on symbols

2008-05-30 Thread Matthieu Brucher
Hi, I'd like to plot three scatter plots on the same figure, each with different symbols. Associated to these scatter plots, I'd like to put a legend. For the moment, the legend is based on one of the color of the associated scatter plot, but it is not relevant. Indeed, the colors are not

[Matplotlib-users] numerix backed??

2008-05-30 Thread keith.briggs
I got this message: /usr/lib64/python2.5/site-packages/matplotlib/numerix/__init__.py:65: DeprecationWarning: numarray use as a numerix backed for matplotlib is deprecated What does numerix backed mean? Keith - This

Re: [Matplotlib-users] numerix backed??

2008-05-30 Thread Darren Dale
On Friday 30 May 2008 6:05:05 am [EMAIL PROTECTED] wrote: I got this message: /usr/lib64/python2.5/site-packages/matplotlib/numerix/__init__.py:65: DeprecationWarning: numarray use as a numerix backed for matplotlib is deprecated What does numerix backed mean? Its a typo, it should read

[Matplotlib-users] Installation of 0.91.2 maintenance + Tkinter developpement packages

2008-05-30 Thread Johan Mazel
Hi I'm trying to install the 0.91.2 maintenance from the SVN on a Ubuntu 8.04 system. But I have an error about Tkinter during the checkin of dependancies : OPTIONAL BACKEND DEPENDENCIES libpng: 1.2.15beta5 Tkinter: no * Tkinter present, but

Re: [Matplotlib-users] Ubuntu Hardy and matplotlib

2008-05-30 Thread Michael Droettboom
I don't see this myself. Are you running the correct Python (not accidentally running Python2.4, for example)? Do you have a /usr/lib/python2.5/site-packages/matplotlib directory? What is the exact error message when you import pylab? Cheers, Mike Marjolaine Rouault wrote: Hi, I am not

Re: [Matplotlib-users] Installation of 0.91.2 maintenance + Tkinter developpement packages

2008-05-30 Thread Michael Droettboom
It seems you have two unrelated errors here. The first is that Hardy changed how Tkinter is packaged so that matplotlib can't find it. We do not have a workaround for this on the 0.91.x maintenance branch. You will need to apply this patch to setupext.py: +@@ -960,6 +960,9 @@ def

Re: [Matplotlib-users] Ubuntu Hardy and matplotlib

2008-05-30 Thread Marjolaine Rouault
hi I am running python 2.5 and installing the matplotlib using synaptic so it is installing the correct version (I assume). After installing matplotlib, In the help(), this is what i get when asking for the modules liist: File stdin, line 1, in module File /usr/lib/python2.5/site.py, line

Re: [Matplotlib-users] Installation of 0.91.2 maintenance + Tkinter developpement packages

2008-05-30 Thread Michael Droettboom
This is in diff format, so it indicates that it is around line 960. The part to add is this: if not os.path.exists(tk_inc): tk_inc = os.path.normpath(os.path.join(tk_lib_dir, '../../../include/tcl' + tk_ver)) right after

Re: [Matplotlib-users] Ubuntu Hardy and matplotlib

2008-05-30 Thread Michael Droettboom
I'm somewhat grasping at straws here: the Ubuntu-packaged matplotlib works for me on Hardy. Thanks. Ubuntu puts the matplotlib data files in a separate package, python-matplotlib-data. That *should* have installed automatically alongside python-matplotlib, but you may want to try forcing

Re: [Matplotlib-users] Installation of 0.91.2 maintenance + Tkinter developpement packages

2008-05-30 Thread Johan Mazel
Atually, I just installed g++ as you were saying and now, it's working. Thanks for the help. Johan Mazel 2008/5/30 Michael Droettboom [EMAIL PROTECTED]: This is in diff format, so it indicates that it is around line 960. The part to add is this: if not os.path.exists(tk_inc):

Re: [Matplotlib-users] Ubuntu Hardy and matplotlib

2008-05-30 Thread Georg Holzmann
Hallo! I am not managing to ge matplotlib to work with the new Ubuntu realease hardy 8.04. After I install the python-matplotlib package, I am not able to list my modules in the help() section and I can also not import pylab. As anyone ha that problem and found a solution? I had the same

[Matplotlib-users] Robinson projection imshow out of bounds and different latitude limits

2008-05-30 Thread Sebastian Krieger
Dear all! I would like to ask two questions: one concerning imshow with the Robinson projection and the second about the latitude limits for the same map projection. First, I am trying to make a Robinson projection map using imshow instead of contourf as described in the Basemap