You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(15) |
Sep
(21) |
Oct
(15) |
Nov
|
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(7) |
Feb
(6) |
Mar
(2) |
Apr
(5) |
May
(6) |
Jun
(3) |
Jul
(4) |
Aug
(4) |
Sep
(3) |
Oct
(14) |
Nov
(16) |
Dec
(10) |
2004 |
Jan
(5) |
Feb
(10) |
Mar
(4) |
Apr
(8) |
May
(1) |
Jun
(5) |
Jul
(5) |
Aug
(4) |
Sep
(10) |
Oct
(3) |
Nov
(4) |
Dec
|
2005 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(15) |
May
(12) |
Jun
(1) |
Jul
(4) |
Aug
(3) |
Sep
(6) |
Oct
(7) |
Nov
(21) |
Dec
(11) |
2006 |
Jan
(16) |
Feb
(12) |
Mar
(4) |
Apr
(6) |
May
(5) |
Jun
(9) |
Jul
|
Aug
(5) |
Sep
(1) |
Oct
(10) |
Nov
(4) |
Dec
(3) |
2007 |
Jan
(6) |
Feb
(4) |
Mar
(6) |
Apr
(11) |
May
(1) |
Jun
(21) |
Jul
|
Aug
(6) |
Sep
(2) |
Oct
(4) |
Nov
|
Dec
|
2008 |
Jan
(14) |
Feb
(1) |
Mar
(5) |
Apr
(22) |
May
(4) |
Jun
(1) |
Jul
(7) |
Aug
(5) |
Sep
(7) |
Oct
(3) |
Nov
|
Dec
(1) |
2009 |
Jan
(14) |
Feb
(1) |
Mar
(9) |
Apr
(5) |
May
(6) |
Jun
(7) |
Jul
(8) |
Aug
(3) |
Sep
|
Oct
|
Nov
(2) |
Dec
(4) |
2010 |
Jan
(2) |
Feb
|
Mar
(6) |
Apr
(6) |
May
(34) |
Jun
|
Jul
(8) |
Aug
(3) |
Sep
|
Oct
(5) |
Nov
(3) |
Dec
(1) |
2011 |
Jan
|
Feb
(4) |
Mar
(3) |
Apr
|
May
|
Jun
(5) |
Jul
(9) |
Aug
(5) |
Sep
(9) |
Oct
(3) |
Nov
(10) |
Dec
(1) |
2012 |
Jan
(1) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(3) |
Nov
(2) |
Dec
(9) |
2014 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2016 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
(1) |
10
|
11
|
12
(2) |
13
(4) |
14
(4) |
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
(2) |
29
(2) |
30
|
31
|
From: Michael H. <hag...@jp...> - 2002-08-13 17:30:32
|
Marc French writes: > Mike, > This is the error I am getting when importing Gnuplot.py > > >>>import Gnuplot > Traceback (most recent call last): > File "<interactive input>", line 1, in ? > ImportError: No module named Gnuplot > > > > >Marc French writes: > > > > > Hello Michael, > > > > > I am having trouble getting the gnuplot.py to work in a windows > > > > > environment. I am very new to python, and I think I am missing > > > > > something very small. I have installed the gnuplot.py. It created a= > > > > > > > directory "C:\python22\lib\site-packages\Gnuplot-1.5" I have tried > > > > > running both the demo.py and the test.py. I am trying to load some > > > > > spectral data and do peak fitting once I get this to work. Do you > > > > > have any pointers for me? Can you help? Oh, there's one strange thing. The directory that Gnuplot.py created was C:\python22\lib\site-packages\Gnuplot-1.5, when normally it should be something like C:\python22\lib\site-packages\Gnuplot. Can you check if you have that directory too, and if not rename the directory you have with that name? Also try starting python then typing >>> import sys >>> print sys.path and check whether the directory *containing* the Gnuplot directory (in your case probably C:\python22\lib\site-packages) is included in the path. Michael -- Michael Haggerty hag...@jp... |
From: Leonardo M. <lm...@ud...> - 2002-08-13 16:02:17
|
Hi Marc > >>>import Gnuplot > Traceback (most recent call last): > File "<interactive input>", line 1, in ? > ImportError: No module named Gnuplot Two things: may be you have two versions of python installed ? You may need to run python2 explicitly Also: what exactly did you type to install Gnuplot ? -- Leo |
From: Marc F. <mcf...@ho...> - 2002-08-13 15:52:54
|
Mike, This is the error I am getting when importing Gnuplot.py >>>import Gnuplot Traceback (most recent call last): File "<interactive input>", line 1, in ? ImportError: No module named Gnuplot I hope this helps with the problem. Marc >From: Michael Haggerty <hag...@jp...> >Reply-To: hag...@jp... >To: gnu...@li... >CC: "Marc French" <mcf...@ho...> >Subject: Re: Gnuplot.py question >Date: Tue, 13 Aug 2002 15:39:21 +0200 (CEST) > >Hi, > >I can only guess because I don't know how your system is set up and >you still haven't described what isn't working, what error messages >you get, etc. > >It sounds like Gnuplot.py installed itself in an appropriate directory >for you, so you shouldn't have to do anything with your PYTHONPATH or >run things from a specific directory. > >Try running python from the command line and type "import Gnuplot". >If this works, then Gnuplot.py is installed correctly. > >Then type "g =3D Gnuplot.Gnuplot()". If this works, then gnuplot (the >plotting program) is also installed correctly. > >If those two things work, then the demo should also work. > >If something doesn't work, please tell us what error message you got! >Otherwise it is almost impossible to help you. > >By the way, I forwarded your email to the new gnuplot-py-users mailing >list. It would be good if users would subscribe to the list and use >it for discussions. > >Yours, >Michael > >Marc French writes: > > Hello Michael, > > Does the gnuplot.py need to be in a specific directory? > > Or can the path be set before importing? > > I am sorry these are probably very trivial questions, but > > I am a Visual Basic programmer. I want to use python for > > lab automation. > > Thanks for your help. > > Marc > > = > > > = > > > >From: Michael Haggerty <hag...@jp...> > > >Reply-To: hag...@jp... > > >To: "Marc French" <mcf...@ho...> > > >Subject: Re: Gnuplot.py question > > >Date: Tue, 6 Aug 2002 11:22:58 +0200 (CEST) > > > > > >Marc French writes: > > > > Hello Michael, > > > > I am having trouble getting the gnuplot.py to work in a windows > > > > environment. I am very new to python, and I think I am missing > > > > something very small. I have installed the gnuplot.py. It created a= > > > > > directory "C:\python22\lib\site-packages\Gnuplot-1.5" I have tried > > > > running both the demo.py and the test.py. I am trying to load some > > > > spectral data and do peak fitting once I get this to work. Do you > > > > have any pointers for me? Can you help? > > > > > >It would help if you would give me some information about how it > > >fails. Do you get an error message? Can you run it from the msdos > > >command line? I don't use windows but your probably have to type > > >something like > > > > > > C:\> python.exe demo.py > > > > > >Michael > > > > > >-- > > >Michael Haggerty > > >hag...@jp... > > = > > > = > > > = > > > = > > > _________________________________________________________________ > > Join the world=92s largest e-mail service with MSN Hotmail. = > > > http://www.hotmail.com > > >-- >Michael Haggerty >hag...@jp... _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com |
From: Michael H. <hag...@jp...> - 2002-08-13 13:25:41
|
Hi, I can only guess because I don't know how your system is set up and you still haven't described what isn't working, what error messages you get, etc. It sounds like Gnuplot.py installed itself in an appropriate directory for you, so you shouldn't have to do anything with your PYTHONPATH or run things from a specific directory. Try running python from the command line and type "import Gnuplot". If this works, then Gnuplot.py is installed correctly. Then type "g =3D Gnuplot.Gnuplot()". If this works, then gnuplot (the plotting program) is also installed correctly. If those two things work, then the demo should also work. If something doesn't work, please tell us what error message you got! Otherwise it is almost impossible to help you. By the way, I forwarded your email to the new gnuplot-py-users mailing list. It would be good if users would subscribe to the list and use it for discussions. Yours, Michael Marc French writes: > Hello Michael, > Does the gnuplot.py need to be in a specific directory? > Or can the path be set before importing? > I am sorry these are probably very trivial questions, but > I am a Visual Basic programmer. I want to use python for > lab automation. > Thanks for your help. > Marc > = > = > >From: Michael Haggerty <hag...@jp...> > >Reply-To: hag...@jp... > >To: "Marc French" <mcf...@ho...> > >Subject: Re: Gnuplot.py question > >Date: Tue, 6 Aug 2002 11:22:58 +0200 (CEST) > > > >Marc French writes: > > > Hello Michael, > > > I am having trouble getting the gnuplot.py to work in a windows > > > environment. I am very new to python, and I think I am missing > > > something very small. I have installed the gnuplot.py. It created a= > > > directory "C:\python22\lib\site-packages\Gnuplot-1.5" I have tried > > > running both the demo.py and the test.py. I am trying to load some > > > spectral data and do peak fitting once I get this to work. Do you > > > have any pointers for me? Can you help? > > > >It would help if you would give me some information about how it > >fails. Do you get an error message? Can you run it from the msdos > >command line? I don't use windows but your probably have to type > >something like > > > > C:\> python.exe demo.py > > > >Michael > > > >-- > >Michael Haggerty > >hag...@jp... > = > = > = > = > _________________________________________________________________ > Join the world=92s largest e-mail service with MSN Hotmail. = > http://www.hotmail.com -- Michael Haggerty hag...@jp... |