You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
(1) |
Aug
|
Sep
(15) |
Oct
(32) |
Nov
(35) |
Dec
(48) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(46) |
Feb
(22) |
Mar
(65) |
Apr
(49) |
May
(22) |
Jun
(29) |
Jul
(51) |
Aug
(34) |
Sep
(32) |
Oct
(46) |
Nov
(30) |
Dec
(32) |
2002 |
Jan
(48) |
Feb
(4) |
Mar
(20) |
Apr
(28) |
May
(13) |
Jun
(34) |
Jul
(51) |
Aug
(15) |
Sep
(15) |
Oct
(35) |
Nov
(15) |
Dec
(20) |
2003 |
Jan
(31) |
Feb
(111) |
Mar
(41) |
Apr
(28) |
May
(36) |
Jun
(29) |
Jul
(27) |
Aug
(29) |
Sep
(47) |
Oct
(28) |
Nov
(7) |
Dec
(26) |
2004 |
Jan
(44) |
Feb
(9) |
Mar
(17) |
Apr
(26) |
May
(58) |
Jun
(13) |
Jul
(44) |
Aug
(64) |
Sep
(30) |
Oct
(11) |
Nov
(21) |
Dec
(28) |
2005 |
Jan
(29) |
Feb
(11) |
Mar
(11) |
Apr
(22) |
May
(85) |
Jun
(46) |
Jul
(17) |
Aug
(18) |
Sep
(14) |
Oct
(22) |
Nov
(1) |
Dec
(45) |
2006 |
Jan
(20) |
Feb
(36) |
Mar
(18) |
Apr
(24) |
May
(21) |
Jun
(48) |
Jul
(23) |
Aug
(20) |
Sep
(10) |
Oct
(41) |
Nov
(46) |
Dec
(40) |
2007 |
Jan
(40) |
Feb
(20) |
Mar
(13) |
Apr
(6) |
May
(24) |
Jun
(31) |
Jul
(30) |
Aug
(11) |
Sep
(11) |
Oct
(10) |
Nov
(56) |
Dec
(64) |
2008 |
Jan
(64) |
Feb
(22) |
Mar
(63) |
Apr
(28) |
May
(25) |
Jun
(36) |
Jul
(11) |
Aug
(9) |
Sep
(14) |
Oct
(41) |
Nov
(46) |
Dec
(130) |
2009 |
Jan
(95) |
Feb
(41) |
Mar
(24) |
Apr
(35) |
May
(53) |
Jun
(67) |
Jul
(48) |
Aug
(48) |
Sep
(86) |
Oct
(75) |
Nov
(64) |
Dec
(52) |
2010 |
Jan
(57) |
Feb
(31) |
Mar
(28) |
Apr
(40) |
May
(25) |
Jun
(42) |
Jul
(79) |
Aug
(31) |
Sep
(49) |
Oct
(66) |
Nov
(38) |
Dec
(25) |
2011 |
Jan
(29) |
Feb
(18) |
Mar
(44) |
Apr
(6) |
May
(28) |
Jun
(31) |
Jul
(36) |
Aug
(24) |
Sep
(30) |
Oct
(23) |
Nov
(21) |
Dec
(27) |
2012 |
Jan
(14) |
Feb
(11) |
Mar
(2) |
Apr
(48) |
May
(7) |
Jun
(32) |
Jul
(22) |
Aug
(25) |
Sep
(31) |
Oct
(32) |
Nov
(21) |
Dec
(17) |
2013 |
Jan
(44) |
Feb
(27) |
Mar
(3) |
Apr
(1) |
May
|
Jun
|
Jul
(3) |
Aug
(4) |
Sep
(1) |
Oct
(7) |
Nov
(5) |
Dec
(5) |
2014 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
(2) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: James R. <u32...@an...> - 2004-01-13 05:56:10
|
Hi, I'm using vpython in computational simulation. A little concerned about the efficiency, I ran the following tests: from visual import * import profile import datetime def dostuff(n): for i in range(n): for i in range(n): pass timea = datetime.datetime.today() profile.run("dostuff(1500)") timeb = datetime.datetime.today() t = timeb - timea print "Actual running time: %i.%i seconds" % (t.seconds, t.microseconds) ball = sphere(pos=(0,0,0), radius=1) timea = datetime.datetime.today() profile.run("dostuff(1500)") timeb = datetime.datetime.today() t = timeb - timea print "Actual running time: %i.%i seconds" % (t.seconds, t.microseconds) And I got this output: Visual-2003-10-05 3 function calls in 1.250 CPU seconds Ordered by: standard name ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 1.240 1.240 <string>:1(?) 1 0.010 0.010 1.250 1.250 profile:0(dostuff(1500)) 0 0.000 0.000 profile:0(profiler) 1 1.240 1.240 1.240 1.240 visualanalysis.py:5(dostuff) Actual running time: 1.338290 seconds Xlib: extension "XFree86-DRI" missing on display ":0.0". 3 function calls in 2.040 CPU seconds Ordered by: standard name ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 2.040 2.040 <string>:1(?) 1 0.000 0.000 2.040 2.040 profile:0(dostuff(1500)) 0 0.000 0.000 profile:0(profiler) 1 2.040 2.040 2.040 2.040 visualanalysis.py:5(dostuff) Actual running time: 10.847798 seconds This in my view is pretty poor efficiency, considering that visual python is doing nothing but displaying a static ball on the second call to dostuff(). Is there anyway to tell visual python to lay off and do nothing for a while? So... in the context of my work, when I call the functions that do all the hard work, i would tell visual python to do nothing, and then when the functions return, i'd tell visual python to start doing stuff again. BTW, what is it doing that slows everything down so much? -- James Roper Summer Research Scholar Department of Computer Science Fourth Year Software Engineer Department of Computer Science Australian National University "A deceptively simple architectural challenge faced by many multi-tasking applications is gracefully doing nothing." Glyph Lefkowitz |
From: John N. <joh...@co...> - 2004-01-09 21:41:30
|
I am in a physics course that has chosen VPython to do some of the computer modeling. Unfortunately, my machine runs OS X 10.3, which doesn't seem to be supported by VPython (yet?). The main problem as far as I can tell is that Panther already comes with a near-complete install of Python 2.3, MacPython installs the Package Manager and IDLE (Numeric is an option in the Package Manager). I don't want to install Python2.2 on top of all that, I imagine it would break lots of things. So I guess I would need to install the fink packages listed, and then somehow link Visual to the built-in Python2.3 included with Panther. Thanks for any and all help with this. John Noonan |
From: Joe H. <hea...@ct...> - 2004-01-02 20:45:35
|
On Friday, Jan 2, 2004, at 11:54 US/Eastern, Kelvin Chu wrote: > 1) To change your shell (back) to tcsh, type: > > chsh (username) > > and then enter /bin/tcsh at the prompt. I want to keep bash, primarily because I want to learn to use it > 2) To put vpython in your path, you will need to have /sw/bin in your > path, which means adding the (appropriate) line to your .cshrc or > other shell-appropriate startup file. This procedure is > documented in the fink install instructions. I didn't see anything specifically for bash, but I could have surely overlooked it. I'll check again. Any idea why the BROWSER variable doesn't seem to be working? It worked fine under 10.2.x and Fink's Python 2.2. I was using the exact same VPython tarball too. Cheers, Joe Heafner -- Astronomy/Physics Instructor |
From: Kelvin C. <kel...@uv...> - 2004-01-02 16:55:00
|
Hi Joe; Glad to hear that things are working. Some Unix and fink-related notes: 1) To change your shell (back) to tcsh, type: chsh (username) and then enter /bin/tcsh at the prompt. 2) To put vpython in your path, you will need to have /sw/bin in your path, which means adding the (appropriate) line to your .cshrc or other shell-appropriate startup file. This procedure is documented in the fink install instructions. 3) X11 and xterm get environmental variables from the shell (ie X is a windowing system, not a shell). 4) I've amended the posted build instructions to include the directions for the bash shell. -k Joe Heafner (hea...@ct...) said the following on [20:47, 01 Jan] about [Visualpython-users] VPython working on Mac OS 10.3.2 > Good evening. > > Using Kevin Chu's instructions at > > > <http://www.uvm.edu/~kchu/?Page=VPython/BuildingVPython.html&SM=miscsubmenu.html> > > > I too have built VPython under Mac OS 10.3.2. I first installed the > latest Fink and FinkCommander (a graphical front end to the Fink > system) and all went well until I tried to build gtk+. There was a > failure somewhere near the end that prevented the built packages from > being installed. I suspect I goofed something up because I set > FinkCommander to use the unstable tree so I wouldn't have to copy over > the python23 info and patch files ad Chu describes. This didn't work, > so I wiped out Fink and FinkCommander and reinstalled Fink. This time, > I copied over the info and patch files as directed. However, I issued > "fink selfupdate" rather than "fink selfupdate-cvs" and all worked > fine. > > Apple has made bash the default shell now and this caused me to > stumble. Environment variables must be set as > > export CPPFLAGS="-I/sw/include -I/sw/include/gtkgl" (note the quotes > needed for multiple arguments) > export BROWSER=open > > I realize the reference to /gtkgl is not needed. I verified these env > variables had been correctly set with > > echo $CPPFLAGS > echo $BROWSER > > I'm curious as to why the LDFLAGS env variable didn't need to be set. > After a successful build and install using the > visual-2.1.9-20031005.tar.gz tarball, I fired up X11 and the vpython > script and got the new IDLE environment and was able to run VPython > programs. The only issues I see are: > > 1) Hitting F1 fails to bring up the web browser with help docs. From > xterm, I saw that the BROWSER env variable didn't exist so I set it > manually (X11 apparently uses bash too), and still it didn't work. I > tried setting this variable in ~/.profile but still no luck, although > this does set the variable in Apple's Terminal program. > > 2) X11 doesn't know about /sw in the PATH, so I have to type > "/sw/bin/vpython &" to start VPython. > > >From where do xterm and X11 get information about environment > variables under 10.3? > > Otherwise, I now have VPython running under Panther. > > Cheers, > Joe Heafner -- Astronomy/Physics Instructor > > -- End of included message -- -- Kelvin Chu Department of Physics, Cook Building, 82 University Place University of Vermont, Burlington, VT 05405-0125 802.656.0064, http://www.uvm.edu/~kchu/ |
From: Joe H. <hea...@ct...> - 2004-01-02 01:47:30
|
Good evening. Using Kevin Chu's instructions at <http://www.uvm.edu/~kchu/?Page=VPython/ BuildingVPython.html&SM=miscsubmenu.html> I too have built VPython under Mac OS 10.3.2. I first installed the latest Fink and FinkCommander (a graphical front end to the Fink system) and all went well until I tried to build gtk+. There was a failure somewhere near the end that prevented the built packages from being installed. I suspect I goofed something up because I set FinkCommander to use the unstable tree so I wouldn't have to copy over the python23 info and patch files ad Chu describes. This didn't work, so I wiped out Fink and FinkCommander and reinstalled Fink. This time, I copied over the info and patch files as directed. However, I issued "fink selfupdate" rather than "fink selfupdate-cvs" and all worked fine. Apple has made bash the default shell now and this caused me to stumble. Environment variables must be set as export CPPFLAGS="-I/sw/include -I/sw/include/gtkgl" (note the quotes needed for multiple arguments) export BROWSER=open I realize the reference to /gtkgl is not needed. I verified these env variables had been correctly set with echo $CPPFLAGS echo $BROWSER I'm curious as to why the LDFLAGS env variable didn't need to be set. After a successful build and install using the visual-2.1.9-20031005.tar.gz tarball, I fired up X11 and the vpython script and got the new IDLE environment and was able to run VPython programs. The only issues I see are: 1) Hitting F1 fails to bring up the web browser with help docs. From xterm, I saw that the BROWSER env variable didn't exist so I set it manually (X11 apparently uses bash too), and still it didn't work. I tried setting this variable in ~/.profile but still no luck, although this does set the variable in Apple's Terminal program. 2) X11 doesn't know about /sw in the PATH, so I have to type "/sw/bin/vpython &" to start VPython. From where do xterm and X11 get information about environment variables under 10.3? Otherwise, I now have VPython running under Panther. Cheers, Joe Heafner -- Astronomy/Physics Instructor |
From: Bruce S. <bas...@un...> - 2003-12-30 01:10:16
|
Thanks to efforts of David Andersen, there are two new features at http://vpython.org. In the FAQ are his instructions on how to create a stand-alone VPython program. In the developers' section are instructions and files for compiling Visual on Windows using the freeware Cygwin Unix-like environment rather than Microsoft Visual Studio. Bruce Sherwood |
From: Jon S. <js...@so...> - 2003-12-29 23:06:15
|
I'm happy to report that yesterday, after a fresh install of 10.3, Kelvin Chu's instructions > http://www.uvm.edu/~kchu/?Page=VPython/ > BuildingVPython.html&SM=miscsubmenu.html produced an apparently healthy vpython. There were a few hiccups. > * The very latest versions of 10.3 and/or X11 make bash the default > shell > > * The startup script /sw/bin/init.sh doesn't get executed > automatically. >> * As a result, I had to use "/sw/bin/fink..." rather than just >> "fink..." (The fink directory ( /sw/bin ) is not on the full path) >>> (I have yet to set the default path successfully. I think I need to >>> tweak .xinitrc as per http://www.misplaced.net/fom/X11/39.html)) > > * The bash equivalent of "rehash" appears to be "hash" > The python IDE that comes up is X-ish of course, and so keybindings for commands like Open File use control -O rather than the OS X command-O. So I'm trying to get quickeys to make the substitutions for me. I've also found that I can run vpython scripts from OS X environments such as that created by voodoopad if I programmatically set the python interpreter to /swbin/python, set the pypath, and set the display variable for the X server. Thus, this works is X11 is running concurrently. > #!/sw/bin/python > import sys > sys.path=['/sw/lib/python2.3/site-packages/visualdemos', > '/sw/lib/python2.3/idlelib', > '/sw/lib/python23.zip', > '/sw/lib/python2.3', '/sw/lib/python2.3/plat-darwin', > '/sw/lib/python2.3/plat-mac', > '/sw/lib/python2.3/plat-mac/lib-scriptpackages', > '/sw/lib/python2.3/lib-tk', > '/sw/lib/python2.3/lib-dynload', > '/sw/lib/python2.3/site-packages', > '/sw/lib/python2.3/site-packages/Numeric'] > > import os > os.putenv('DISPLAY',':0.0') > > from visual import * > box() > > """ > This program works if X11 is running on the system at runtime. > """ Which has me wondering whether the OS X can be tweaked to provide an OS X IDE But I haven't tried that yet. Anyway this is a much better place to be. Thanks to everyone for their help. On Dec 29, 2003, at 1:30 PM, Joe Heafner wrote: > Has anyone succeeded in either building VPython or running complete > VPython programs on OS 10.3 yet? This is the only thing hold up my > upgrade to Panther on my work Mac. > > Cheers, > Joe Heafner > > ----- > New email address: hea...@ct... > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for > IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys > admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > ------------------ Jon Schull, Ph.D. Associate Professor Information Technology Rochester Institute of Technology sc...@di... 585-738-6696 |
From: Joe H. <hea...@ct...> - 2003-12-29 18:31:09
|
Has anyone succeeded in either building VPython or running complete VPython programs on OS 10.3 yet? This is the only thing hold up my upgrade to Panther on my work Mac. Cheers, Joe Heafner ----- New email address: hea...@ct... |
From: Kelvin C. <kel...@uv...> - 2003-12-23 03:59:39
|
Hi Jonathan; The gtkglarea.h include is a old habit to deal with a bad VPython-building experience earlier. You're absolutely right that it shouldn't be in there. Best, -k On 22 Dec, 2003, at 9:38 PM, Jonathan Brandmeyer wrote: > On Mon, 2003-12-22 at 13:46, Kelvin Chu wrote: >> Below is a link on how to build VPython on MacOSX 10.3 using Python >> 2.3. >> >> http://www.uvm.edu/~kchu/?Page=VPython/ >> BuildingVPython.html&SM=miscsubmenu.html >> >> I built VPython yesterday on a fresh (10.3 eMac) starting completely >> from scratch. Please let me know how this works for you so that we >> can >> refine this process and make it as painless as possible. >> >> -k > > Thank you for your help and feedback, Mr. Chu. The only thing about > your instructions that jumped out at me is that I don't think you > should > need to add -I/sw/include/gtkgl to CPPFLAGS. gtkglarea.h is referenced > as gtkgl/gtkglarea.h in the source code. > > Also, support for the 'distclean' target in the cvisual subdirectory > has > been added to CVS. Thanks for pointing out that deficiency. > > -Jonathan Brandmeyer > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for > IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys > admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > -- Kelvin Chu, Physics Department, Cook Building 82 University Place, University of Vermont, Burlington VT 05405-0125 http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 |
From: Jonathan B. <jbr...@ea...> - 2003-12-23 02:38:46
|
On Mon, 2003-12-22 at 13:46, Kelvin Chu wrote: > Below is a link on how to build VPython on MacOSX 10.3 using Python 2.3. > > http://www.uvm.edu/~kchu/?Page=VPython/ > BuildingVPython.html&SM=miscsubmenu.html > > I built VPython yesterday on a fresh (10.3 eMac) starting completely > from scratch. Please let me know how this works for you so that we can > refine this process and make it as painless as possible. > > -k Thank you for your help and feedback, Mr. Chu. The only thing about your instructions that jumped out at me is that I don't think you should need to add -I/sw/include/gtkgl to CPPFLAGS. gtkglarea.h is referenced as gtkgl/gtkglarea.h in the source code. Also, support for the 'distclean' target in the cvisual subdirectory has been added to CVS. Thanks for pointing out that deficiency. -Jonathan Brandmeyer |
From: Jonathan B. <jbr...@ea...> - 2003-12-23 01:56:19
|
On Mon, 2003-12-22 at 20:05, Jon Schull wrote: > however (as formerly under 2.2), I still have an OpenGL problem. > > > >>> sphere() > > OpenGL initialization failed. > > Unable to create OpenGL display widget > > <Primitive object at 0x62d394> > > >>> > > at the same time stderr writes > > Gtk-WARNING **: invalid cast from (NULL) pointer to `GtkWidget' > > > This is apparently unrelated to Python (but I'd still like help!!), > since I can't run glgears either: > > Error: couldn't get an RGB, Double-buffered visual > > any suggestions?? Might the pango / glib2 hiccup be the issue? No. glxgears doesn't use either pango or glib2, it directly uses the X11 protocol. Visual doesn't use pango or glib2 either, since it uses gtk+ 1.x. FYI, Pango is the internationalized text engine for Gtk+ version 2 (and later). -Jonathan Brandmeyer |
From: Kelvin C. <kel...@uv...> - 2003-12-23 01:44:44
|
I'm no expert, but my machine doesn't have pango installed at all. Therefore, is it there because you've used it for another package? A quick search through the 10.3/stable directory shows that the packages below depend upon pango. I have gtk+ installed, but not gtk+2. habanero[~]% find /sw -name \*.info -print | grep -v unstable | grep 10.3 | xargs grep pango | grep -i depends | cut -d ":" -f 1 /sw/fink/10.3/stable/main/finkinfo/editors/bluefish.info /sw/fink/10.3/stable/main/finkinfo/games/dopewars.info /sw/fink/10.3/stable/main/finkinfo/games/dopewars.info /sw/fink/10.3/stable/main/finkinfo/gnome/gtk+2-2.0.6-4.info /sw/fink/10.3/stable/main/finkinfo/gnome/gtk+2-2.0.6-4.info /sw/fink/10.3/stable/main/finkinfo/gnome/pango1-dev.info /sw/fink/10.3/stable/main/finkinfo/gnome/pango1-shlibs.info /sw/fink/10.3/stable/main/finkinfo/gnome/pango1.info /sw/fink/10.3/stable/main/finkinfo/gnome/pygtk2-py23.info /sw/fink/10.3/stable/main/finkinfo/gnome/pygtk2-py23.info /sw/fink/10.3/stable/main/finkinfo/net/gaim.info /sw/fink/10.3/stable/main/finkinfo/net/pan.info None of them appear to be required for vpython. -k On 22 Dec, 2003, at 8:05 PM, Jon Schull wrote: > Good news and bad news > > #1: First, Kevin's instructions were superbly clear and I was able to > follow them without only one hiccup on a non-clean 10.3 system > recently upgraded from 10.2. > > The hitch came here: >> fink update-all >> [schull-mac:/sw/etc] jis% fink update-all >> /usr/bin/sudo /sw/bin/fink update-all >> Information about 1185 packages read in 1 seconds. >> >> fink needs help picking an alternative to satisfy a virtual >> dependency. The >> candidates: >> >> (1) pango1-dev: I18N text handling system convinience package >> (2) pango1-xft2-dev: I18N text handling system: for XFree86 (>= >> 4.3) >> >> Pick one: [1] 1 >> Failed: Can't resolve dependency "glib2 (>= 2.2.3-1)" for package >> "libidl2-0.8.2-2" (no matching packages/versions found) > > > Second, they do seem to have built me a fresh python. When I type > visual, I now get > >> Python 2.3.2 (#1, Dec 22 2003, 18:36:41) >> [GCC 3.3 20030304 (Apple Computer, Inc. build 1495)] on darwin >> Type "copyright", "credits" or "license()" for more information. >> >> **************************************************************** >> Personal firewall software may warn about the connection IDLE >> makes to its subprocess using this computer's internal loopback >> interface. This connection is not visible on any external >> interface and no data is sent to or received from the Internet. >> **************************************************************** >> >> IDLE 1.0 >> > > and it works > >> >>> print 'hello' >> hello >> >>> from visual import * >> Visual-2003-10-05 > > however (as formerly under 2.2), I still have an OpenGL problem. > >> >>> sphere() >> OpenGL initialization failed. >> Unable to create OpenGL display widget >> <Primitive object at 0x62d394> >> >>> > > at the same time stderr writes >> Gtk-WARNING **: invalid cast from (NULL) pointer to `GtkWidget' > > > This is apparently unrelated to Python (but I'd still like help!!), > since I can't run glgears either: >> Error: couldn't get an RGB, Double-buffered visual > > any suggestions?? Might the pango / glib2 hiccup be the issue? > ------------------ > Jon Schull, Ph.D. > Associate Professor > Information Technology > Rochester Institute of Technology > sc...@di... 585-738-6696 > > > > On Dec 22, 2003, at 1:46 PM, Kelvin Chu wrote: > >> Below is a link on how to build VPython on MacOSX 10.3 using Python >> 2.3. >> >> http://www.uvm.edu/~kchu/?Page=VPython/ >> BuildingVPython.html&SM=miscsubmenu.html >> >> I built VPython yesterday on a fresh (10.3 eMac) starting completely >> from scratch. Please let me know how this works for you so that we >> can refine this process and make it as painless as possible. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for > IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys > admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > -- Kelvin Chu, Physics Department, Cook Building 82 University Place, University of Vermont, Burlington VT 05405-0125 http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 |
From: Jon S. <js...@so...> - 2003-12-23 01:05:13
|
Good news and bad news #1: First, Kevin's instructions were superbly clear and I was able to follow them without only one hiccup on a non-clean 10.3 system recently upgraded from 10.2. The hitch came here: > fink update-all > [schull-mac:/sw/etc] jis% fink update-all > /usr/bin/sudo /sw/bin/fink update-all > Information about 1185 packages read in 1 seconds. > > fink needs help picking an alternative to satisfy a virtual > dependency. The > candidates: > > (1) pango1-dev: I18N text handling system convinience package > (2) pango1-xft2-dev: I18N text handling system: for XFree86 (>= > 4.3) > > Pick one: [1] 1 > Failed: Can't resolve dependency "glib2 (>= 2.2.3-1)" for package > "libidl2-0.8.2-2" (no matching packages/versions found) Second, they do seem to have built me a fresh python. When I type visual, I now get > Python 2.3.2 (#1, Dec 22 2003, 18:36:41) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1495)] on darwin > Type "copyright", "credits" or "license()" for more information. > > **************************************************************** > Personal firewall software may warn about the connection IDLE > makes to its subprocess using this computer's internal loopback > interface. This connection is not visible on any external > interface and no data is sent to or received from the Internet. > **************************************************************** > > IDLE 1.0 > and it works > >>> print 'hello' > hello > >>> from visual import * > Visual-2003-10-05 however (as formerly under 2.2), I still have an OpenGL problem. > >>> sphere() > OpenGL initialization failed. > Unable to create OpenGL display widget > <Primitive object at 0x62d394> > >>> at the same time stderr writes > Gtk-WARNING **: invalid cast from (NULL) pointer to `GtkWidget' This is apparently unrelated to Python (but I'd still like help!!), since I can't run glgears either: > Error: couldn't get an RGB, Double-buffered visual any suggestions?? Might the pango / glib2 hiccup be the issue? ------------------ Jon Schull, Ph.D. Associate Professor Information Technology Rochester Institute of Technology sc...@di... 585-738-6696 On Dec 22, 2003, at 1:46 PM, Kelvin Chu wrote: > Below is a link on how to build VPython on MacOSX 10.3 using Python > 2.3. > > http://www.uvm.edu/~kchu/?Page=VPython/ > BuildingVPython.html&SM=miscsubmenu.html > > I built VPython yesterday on a fresh (10.3 eMac) starting completely > from scratch. Please let me know how this works for you so that we > can refine this process and make it as painless as possible. |
From: Kelvin C. <kel...@uv...> - 2003-12-22 18:46:46
|
Below is a link on how to build VPython on MacOSX 10.3 using Python 2.3. http://www.uvm.edu/~kchu/?Page=VPython/ BuildingVPython.html&SM=miscsubmenu.html I built VPython yesterday on a fresh (10.3 eMac) starting completely from scratch. Please let me know how this works for you so that we can refine this process and make it as painless as possible. -k -- Kelvin Chu, Physics Department, Cook Building 82 University Place, University of Vermont, Burlington VT 05405-0125 http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 |
From: Jon S. <js...@so...> - 2003-12-21 01:56:27
|
interesting, thanks for the record, I can get that far, but if I try do something... from visual import * sphere() Gtk-WARNING **: invalid cast from (NULL) pointer to `GtkWidget' OpenGL initialization failed. Unable to create OpenGL display widget <Primitive object at 0x492164> so now I"m trying to figure out OpenGL 8-/ On Dec 20, 2003, at 8:21 PM, Kelvin Chu wrote: > I have VPython working on a MacOSX 10.3 box running Python 2.3. > > habanero[1;~]% uname -a > Darwin habanero-kc-uvm-edu.local 7.2.0 Darwin Kernel Version 7.2.0: > Thu Dec 11 16:20:23 PST 2003; root:xnu/xnu-517.3.7.obj~1/RELEASE_PPC > Power Macintosh powerpc > habanero[2;~]% which python > /sw/bin/python > habanero[3;~]% python > Python 2.3.2 (#1, Nov 21 2003, 23:51:34) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1495)] on darwin > Type "help", "copyright", "credits" or "license" for more information. > >>> from visual import * > >>> > > Here's the setup. > > 1. MacOSX 10.3 was installed as an upgrade to MacOSX 10.2 > > 2. Python 2.3 was installed via fink. To do this (and to install > numeric and a bunch of other Python2.3 things) you will have to locate > the packages and move them from the unstable to the corresponding > "stable" directory. I have not noticed any actual instability in > these packages. My list of fink packages is at the bottom of this > message. > > 3. VPython was installed using the binary from vpython.org. The > 'vpython' that lives in /sw/bin calls the Python 2.2, but you can of > course change this. > > If people need it, I can find a fresh 10.3 install machine and see > what needs to be done in order to get this running. > > -k > > > Below is a list of packages installed via fink. You will doubtless > *not* need to install most of these. > > habanero[4;~]% fink list | grep ^" i" > i apt 0.5.4-35 Advanced front-end for dpkg > i apt-shlibs 0.5.4-35 Advanced front-end for dpkg > i aquaterm 0.3.0a-5 Displays vector graphics in > Aqua > i aspell 0.50.2-10 Spell checker more intelligent than > ispell > i atlas 3.4.1-2 Portably optimal linear algebra software > i base-files 1.8.0-1 Directory infrastructure > i bzip2 1.0.2-12 Block-sorting file compressor > i bzip2-dev 1.0.2-12 Developer files for bzip2 > package > i bzip2-shlibs 1.0.2-12 Shared libraries for bzip2 > package > i cctools 495-1 [virtual package representing the developer > tools] > i cctools-extra 20030516-2 Extra software from cctools > i cctools-single-module 1.0-1 [virtual package, your dev > tools support -single_module] > i darwin 7.2.0-1 [virtual package representing the kernel] > i db3 3.3.11-23 Berkeley DB embedded database > i db3-shlibs 3.3.11-23 Shared Libraries for db3 > i db4-shlibs 4.0.14-22 Shared Libraries for db4 > i debianutils 1.23-11 Misc. utilities specific to Debian > (and Fink) > i dlcompat 20030629-15 Dynamic loading compatibility > library (dummy) > i dlcompat-dev 20030629-15 Dynamic loading compatibility > library dev package (dummy) > i dlcompat-shlibs 20030629-15 shared libraries for dlcompat > i dpkg 1.10.9-27 The Debian package manager > i ethereal-ssl 0.9.14-1 Powerful network protocol > analyzer (with SSL) > i expat 1.95.5-4 C library for parsing XML > i expat-shlibs 1.95.5-4 C library for parsing XML > i f2py-py23 2.32.225-1419-11 Fortran to Python > Interface Generator > i fftw 2.1.3-13 Library for computing the Discrete > Fourier Transform > i fftw-shlibs 2.1.3-13 Library for computing the > Discrete Fourier Transform > i fileutils 4.1-3 Common shell commands like ls, touch, > chmod > i fink 0.16.2-1 The Fink package manager > i fink-prebinding 0.5-1 Tools for enabling prebinding in Fink > i freetype2 2.1.3-11 TrueType font rendering > library, version 2 (dummy) > i freetype2-shlibs 2.1.3-11 TrueType font > rendering library, version 2, shared libs > i g77 3.4-20031015 GNU Fortran compiler > i gcc2 2.9.5-1 [virtual package representing the gcc2 > compiler] > i gdbm-shlibs 1.8.0-6 Shared libraries for gdbm package > i gdbm3 1.8.3-1 GNU dbm library > i gdbm3-shlibs 1.8.3-1 Shared libraries for gdbm3 package > i gettext 0.10.40-17 Message localization support > i gettext-bin 0.10.40-17 Executables for gettext package > i gettext-dev 0.10.40-17 Developer files for gettext > package > i ghostscript 8.00-3 Interpreter for PostScript and PDF > i ghostscript-fonts 6.0-3 Standard fonts for Ghostscript > i glib 1.2.10-18 Common C routines used by Gtk+ and > other libs > i glib-shlibs 1.2.10-18 Common C routines used by Gtk+ > and other libs > i glut 3.7-13 Opengl utility toolkit > i glut-shlibs 3.7-13 Opengl utility toolkit > i gmp 4.1.2-11 GNU multiple precision arithmetic > library > i gmp-shlibs 4.1.2-11 Shared libraries for gmp > package > i gnuplot 3.8j.0-21 Command-driven interactive plotting > program > i gnuplot-py23 1.6-11 Python interface to gnuplot > i gtk+ 1.2.10-13 The Gimp Toolkit > i gtk+-data 1.2.10-13 The Gimp Toolkit > i gtk+-shlibs 1.2.10-13 The Gimp Toolkit > i gtkglarea 1.2.3-2 OpenGL widget for GTK+ > i gv 3.5.8-5 X11 interface for ghostscript interpreter > i gzip 1.2.4a-6 The gzip file compressor > i imagemagick 5.5.1-13 Image manipulation tools > i ispell 3.2.06-3 Interactive spell-checker > i lcms 1.09-2 Free color management engine in 100K > i lcms-shlibs 1.09-2 Free color management engine in 100K > i libiconv 1.9.1-11 Character set conversion > library > i libiconv-bin 1.9.1-11 Executables for libiconv > package > i libiconv-dev 1.9.1-11 Developer files for libiconv > package > i libjpeg 6b-6 JPEG image format handling library > i libjpeg-bin 6b-6 Executables for libjpeg package > i libjpeg-shlibs 6b-6 Shared libraries for libjpeg package > i libpcap 0.6.2-6 Network packet capture library > i libpcap-shlibs 0.6.2-6 Network packet capture library > i libpng3 1.2.5-4 PNG image format handling library > i libpng3-shlibs 1.2.5-4 Shared libraries for libpng3 package > i libtiff 3.5.7-7 TIFF image format library and tools > i libtiff-bin 3.5.7-7 Executables for libtiff package > i libtiff-shlibs 3.5.7-7 Shared libraries for libtiff package > i libxml2 2.5.10-12 XML parsing library, version 2 > i libxml2-bin 2.5.10-12 XML parsing library, version 2 > i libxml2-shlibs 2.5.10-12 XML parsing library, version 2 > i macosx 10.3.2-1 [virtual package representing the > system] > i mutt-ssl 1.4.1i-11 Sophisticated text-based mail > user agent > i ncftp 3.1.5-11 Browser program using ftp protocol > i ncurses 5.3-20031018-2 Full-screen ascii drawing library > i ncurses-dev 5.3-20031018-2 Development files for ncurses > package > i ncurses-shlibs 5.3-20031018-2 Shared libraries for ncurses > package > i nmap 3.00-3 Network exploration utility (X11 support) > i numeric-py23 23.0-11 Multidim'l numerical arrays for > Python, using Apple vecLib > i openssl 0.9.6k-11 Secure Sockets Layer and general > crypto library > i openssl-shlibs 0.9.6k-11 Secure Sockets Layer and > general crypto library > i openssl097-dev 0.9.7b-1 Secure Sockets Layer and > general crypto library > i openssl097-shlibs 0.9.7b-1 Secure Sockets Layer > and general crypto library > i pdflib 5.0.1-1 Library for generating PDF (lite version) > i pdflib-shlibs 5.0.1-1 Library for generating PDF (lite > version) > i pil-py23 1.1.4-23 Python Imaging Library > i pkgconfig 0.15.0-2 System for managing library > compile/link flags > i pmw 0.8.5-2 High-level compound widgets for Python using > Tkinter > i python 1:2.3.2-21 Interpreted, object-oriented language > i python23 1:2.3.2-21 Interpreted, object-oriented > language > i python23-shlibs 1:2.3.2-21 Interpreted, object-oriented > language > i python23-socket 1:2.3.2-21 Socket plugin for python > i readline 4.3-25 Comfortable terminal input library > i readline-shlibs 4.3-25 Comfortable terminal input library > i reportlab-py23 1.17-11 PDF creation library for Python > i scipy-py23 20030629-2 Scientific tools for Python > i storable-pm 1.0.14-6 Placeholder for versioned > Storable packages > i storable-pm560 1.0.14-3 Perl module for persistent > data structures, v. 5.6.0 > i system-java13 1.3.1-1 [virtual package representing Java > 1.3.1] > i system-java13-dev 1.3.1-1 [virtual package representing > Java 1.3.1 development headers] > i system-java14 1.4.1-1 [virtual package representing Java > 1.4.1] > i system-java14-dev 1.4.1-1 [virtual package representing > Java 1.4.1 development headers] > i system-perl 5.8.1-1 [virtual package representing perl] > i system-tetex 20010808-12 Placeholder package for > manually installed teTeX > i system-xfree86 2:4.3-1 [placeholder for user installed x11] > i tar 1.13.25-1 GNU tar - tape archiver > i tcltk 8.4.1-2 Tool Command Language and the Tk toolkit > i tcltk-dev 8.4.1-2 Tool Command Language and the Tk > toolkit > i tcltk-shlibs 8.4.1-2 Tool Command Language and the Tk > toolkit > i texinfo 4.2-22 Texinfo documentation system > i type1inst 0.6.1-3 Type 1 PostScript font installation > utility > i unzip 5.50-3 Decompression compatible with pkunzip > i wxgtk 2.4.1.2-22 Cross-platform (unix,windows,mac) GUI > API - unix version > i wxgtk-shlibs 2.4.1.2-22 Cross-platform > (unix,windows,mac) GUI API - unix version > i wxpython-py23 2.4.1.2-11 WxWindows library bindings for > Python > i xaw3d 1.5-5 Athena widget set with 3D look > i xaw3d-shlibs 1.5-5 Athena widget set with 3D look > i xemacs 21.4.9-14 Highly customizable text editor > i xemacs-sumo-pkg 20020919-1 All xemacs packages together > i xv 3.10a-2 Image viewer > i yafc 1.0-11 Enhanced ftp client, supporting ssh2 (sftp) > > -- > Kelvin Chu, Physics Department, Cook Building > 82 University Place, University of Vermont, Burlington VT 05405-0125 > http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for > IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys > admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > ------------------ Jon Schull, Ph.D. Associate Professor Information Technology Rochester Institute of Technology sc...@di... 585-738-6696 |
From: Jonathan B. <jbr...@ea...> - 2003-12-21 01:47:32
|
On Sat, 2003-12-20 at 20:21, Kelvin Chu wrote: > I have VPython working on a MacOSX 10.3 box running Python 2.3. > > habanero[1;~]% uname -a > Darwin habanero-kc-uvm-edu.local 7.2.0 Darwin Kernel Version 7.2.0: Thu > Dec 11 16:20:23 PST 2003; root:xnu/xnu-517.3.7.obj~1/RELEASE_PPC Power > Macintosh powerpc > habanero[2;~]% which python > /sw/bin/python > habanero[3;~]% python > Python 2.3.2 (#1, Nov 21 2003, 23:51:34) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1495)] on darwin > Type "help", "copyright", "credits" or "license" for more information. > >>> from visual import * > >>> Well, that's *very* interesting. In my testing I received an error related to an extension module API mismatch. I should add that since I haven't actually gotten my hands on MacOS 10.3 that all of my testing with Python 2.3 to date has been on Windows and Linux. Thanks for the information, Jonathan Brandmeyer |
From: Jonathan B. <jbr...@ea...> - 2003-12-21 01:45:11
|
On Sat, 2003-12-20 at 20:21, Kelvin Chu wrote: > I have VPython working on a MacOSX 10.3 box running Python 2.3. > > habanero[1;~]% uname -a > Darwin habanero-kc-uvm-edu.local 7.2.0 Darwin Kernel Version 7.2.0: Thu > Dec 11 16:20:23 PST 2003; root:xnu/xnu-517.3.7.obj~1/RELEASE_PPC Power > Macintosh powerpc > habanero[2;~]% which python > /sw/bin/python > habanero[3;~]% python > Python 2.3.2 (#1, Nov 21 2003, 23:51:34) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1495)] on darwin > Type "help", "copyright", "credits" or "license" for more information. > >>> from visual import * > >>> Well, that's *very* interesting. In my testing I received an error related to an extension module API mismatch. Thanks for the information, Jonathan Brandmeyer |
From: Kelvin C. <kel...@uv...> - 2003-12-21 01:22:12
|
I have VPython working on a MacOSX 10.3 box running Python 2.3. habanero[1;~]% uname -a Darwin habanero-kc-uvm-edu.local 7.2.0 Darwin Kernel Version 7.2.0: Thu Dec 11 16:20:23 PST 2003; root:xnu/xnu-517.3.7.obj~1/RELEASE_PPC Power Macintosh powerpc habanero[2;~]% which python /sw/bin/python habanero[3;~]% python Python 2.3.2 (#1, Nov 21 2003, 23:51:34) [GCC 3.3 20030304 (Apple Computer, Inc. build 1495)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from visual import * >>> Here's the setup. 1. MacOSX 10.3 was installed as an upgrade to MacOSX 10.2 2. Python 2.3 was installed via fink. To do this (and to install numeric and a bunch of other Python2.3 things) you will have to locate the packages and move them from the unstable to the corresponding "stable" directory. I have not noticed any actual instability in these packages. My list of fink packages is at the bottom of this message. 3. VPython was installed using the binary from vpython.org. The 'vpython' that lives in /sw/bin calls the Python 2.2, but you can of course change this. If people need it, I can find a fresh 10.3 install machine and see what needs to be done in order to get this running. -k Below is a list of packages installed via fink. You will doubtless *not* need to install most of these. habanero[4;~]% fink list | grep ^" i" i apt 0.5.4-35 Advanced front-end for dpkg i apt-shlibs 0.5.4-35 Advanced front-end for dpkg i aquaterm 0.3.0a-5 Displays vector graphics in Aqua i aspell 0.50.2-10 Spell checker more intelligent than ispell i atlas 3.4.1-2 Portably optimal linear algebra software i base-files 1.8.0-1 Directory infrastructure i bzip2 1.0.2-12 Block-sorting file compressor i bzip2-dev 1.0.2-12 Developer files for bzip2 package i bzip2-shlibs 1.0.2-12 Shared libraries for bzip2 package i cctools 495-1 [virtual package representing the developer tools] i cctools-extra 20030516-2 Extra software from cctools i cctools-single-module 1.0-1 [virtual package, your dev tools support -single_module] i darwin 7.2.0-1 [virtual package representing the kernel] i db3 3.3.11-23 Berkeley DB embedded database i db3-shlibs 3.3.11-23 Shared Libraries for db3 i db4-shlibs 4.0.14-22 Shared Libraries for db4 i debianutils 1.23-11 Misc. utilities specific to Debian (and Fink) i dlcompat 20030629-15 Dynamic loading compatibility library (dummy) i dlcompat-dev 20030629-15 Dynamic loading compatibility library dev package (dummy) i dlcompat-shlibs 20030629-15 shared libraries for dlcompat i dpkg 1.10.9-27 The Debian package manager i ethereal-ssl 0.9.14-1 Powerful network protocol analyzer (with SSL) i expat 1.95.5-4 C library for parsing XML i expat-shlibs 1.95.5-4 C library for parsing XML i f2py-py23 2.32.225-1419-11 Fortran to Python Interface Generator i fftw 2.1.3-13 Library for computing the Discrete Fourier Transform i fftw-shlibs 2.1.3-13 Library for computing the Discrete Fourier Transform i fileutils 4.1-3 Common shell commands like ls, touch, chmod i fink 0.16.2-1 The Fink package manager i fink-prebinding 0.5-1 Tools for enabling prebinding in Fink i freetype2 2.1.3-11 TrueType font rendering library, version 2 (dummy) i freetype2-shlibs 2.1.3-11 TrueType font rendering library, version 2, shared libs i g77 3.4-20031015 GNU Fortran compiler i gcc2 2.9.5-1 [virtual package representing the gcc2 compiler] i gdbm-shlibs 1.8.0-6 Shared libraries for gdbm package i gdbm3 1.8.3-1 GNU dbm library i gdbm3-shlibs 1.8.3-1 Shared libraries for gdbm3 package i gettext 0.10.40-17 Message localization support i gettext-bin 0.10.40-17 Executables for gettext package i gettext-dev 0.10.40-17 Developer files for gettext package i ghostscript 8.00-3 Interpreter for PostScript and PDF i ghostscript-fonts 6.0-3 Standard fonts for Ghostscript i glib 1.2.10-18 Common C routines used by Gtk+ and other libs i glib-shlibs 1.2.10-18 Common C routines used by Gtk+ and other libs i glut 3.7-13 Opengl utility toolkit i glut-shlibs 3.7-13 Opengl utility toolkit i gmp 4.1.2-11 GNU multiple precision arithmetic library i gmp-shlibs 4.1.2-11 Shared libraries for gmp package i gnuplot 3.8j.0-21 Command-driven interactive plotting program i gnuplot-py23 1.6-11 Python interface to gnuplot i gtk+ 1.2.10-13 The Gimp Toolkit i gtk+-data 1.2.10-13 The Gimp Toolkit i gtk+-shlibs 1.2.10-13 The Gimp Toolkit i gtkglarea 1.2.3-2 OpenGL widget for GTK+ i gv 3.5.8-5 X11 interface for ghostscript interpreter i gzip 1.2.4a-6 The gzip file compressor i imagemagick 5.5.1-13 Image manipulation tools i ispell 3.2.06-3 Interactive spell-checker i lcms 1.09-2 Free color management engine in 100K i lcms-shlibs 1.09-2 Free color management engine in 100K i libiconv 1.9.1-11 Character set conversion library i libiconv-bin 1.9.1-11 Executables for libiconv package i libiconv-dev 1.9.1-11 Developer files for libiconv package i libjpeg 6b-6 JPEG image format handling library i libjpeg-bin 6b-6 Executables for libjpeg package i libjpeg-shlibs 6b-6 Shared libraries for libjpeg package i libpcap 0.6.2-6 Network packet capture library i libpcap-shlibs 0.6.2-6 Network packet capture library i libpng3 1.2.5-4 PNG image format handling library i libpng3-shlibs 1.2.5-4 Shared libraries for libpng3 package i libtiff 3.5.7-7 TIFF image format library and tools i libtiff-bin 3.5.7-7 Executables for libtiff package i libtiff-shlibs 3.5.7-7 Shared libraries for libtiff package i libxml2 2.5.10-12 XML parsing library, version 2 i libxml2-bin 2.5.10-12 XML parsing library, version 2 i libxml2-shlibs 2.5.10-12 XML parsing library, version 2 i macosx 10.3.2-1 [virtual package representing the system] i mutt-ssl 1.4.1i-11 Sophisticated text-based mail user agent i ncftp 3.1.5-11 Browser program using ftp protocol i ncurses 5.3-20031018-2 Full-screen ascii drawing library i ncurses-dev 5.3-20031018-2 Development files for ncurses package i ncurses-shlibs 5.3-20031018-2 Shared libraries for ncurses package i nmap 3.00-3 Network exploration utility (X11 support) i numeric-py23 23.0-11 Multidim'l numerical arrays for Python, using Apple vecLib i openssl 0.9.6k-11 Secure Sockets Layer and general crypto library i openssl-shlibs 0.9.6k-11 Secure Sockets Layer and general crypto library i openssl097-dev 0.9.7b-1 Secure Sockets Layer and general crypto library i openssl097-shlibs 0.9.7b-1 Secure Sockets Layer and general crypto library i pdflib 5.0.1-1 Library for generating PDF (lite version) i pdflib-shlibs 5.0.1-1 Library for generating PDF (lite version) i pil-py23 1.1.4-23 Python Imaging Library i pkgconfig 0.15.0-2 System for managing library compile/link flags i pmw 0.8.5-2 High-level compound widgets for Python using Tkinter i python 1:2.3.2-21 Interpreted, object-oriented language i python23 1:2.3.2-21 Interpreted, object-oriented language i python23-shlibs 1:2.3.2-21 Interpreted, object-oriented language i python23-socket 1:2.3.2-21 Socket plugin for python i readline 4.3-25 Comfortable terminal input library i readline-shlibs 4.3-25 Comfortable terminal input library i reportlab-py23 1.17-11 PDF creation library for Python i scipy-py23 20030629-2 Scientific tools for Python i storable-pm 1.0.14-6 Placeholder for versioned Storable packages i storable-pm560 1.0.14-3 Perl module for persistent data structures, v. 5.6.0 i system-java13 1.3.1-1 [virtual package representing Java 1.3.1] i system-java13-dev 1.3.1-1 [virtual package representing Java 1.3.1 development headers] i system-java14 1.4.1-1 [virtual package representing Java 1.4.1] i system-java14-dev 1.4.1-1 [virtual package representing Java 1.4.1 development headers] i system-perl 5.8.1-1 [virtual package representing perl] i system-tetex 20010808-12 Placeholder package for manually installed teTeX i system-xfree86 2:4.3-1 [placeholder for user installed x11] i tar 1.13.25-1 GNU tar - tape archiver i tcltk 8.4.1-2 Tool Command Language and the Tk toolkit i tcltk-dev 8.4.1-2 Tool Command Language and the Tk toolkit i tcltk-shlibs 8.4.1-2 Tool Command Language and the Tk toolkit i texinfo 4.2-22 Texinfo documentation system i type1inst 0.6.1-3 Type 1 PostScript font installation utility i unzip 5.50-3 Decompression compatible with pkunzip i wxgtk 2.4.1.2-22 Cross-platform (unix,windows,mac) GUI API - unix version i wxgtk-shlibs 2.4.1.2-22 Cross-platform (unix,windows,mac) GUI API - unix version i wxpython-py23 2.4.1.2-11 WxWindows library bindings for Python i xaw3d 1.5-5 Athena widget set with 3D look i xaw3d-shlibs 1.5-5 Athena widget set with 3D look i xemacs 21.4.9-14 Highly customizable text editor i xemacs-sumo-pkg 20020919-1 All xemacs packages together i xv 3.10a-2 Image viewer i yafc 1.0-11 Enhanced ftp client, supporting ssh2 (sftp) -- Kelvin Chu, Physics Department, Cook Building 82 University Place, University of Vermont, Burlington VT 05405-0125 http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 |
From: Jon S. <js...@so...> - 2003-12-20 23:24:53
|
that's easy. One big package would be a bargain! for 2.3 or 2.2. Did you see Gary Pajer's comment re 2.3? > First: vpython works with the fink version of python 2.3. Not the > one that > ships with OSX, I believe. Of course I can't figure out how to get the fink version of 2.3. I think it has to do with" unstable..." The configuration issues in this universe (not vpython; it's context are really unbelievable). If you're free to help me get either a 2.2 or a 2.3 installation working right now, I'd be very grateful. I can be iChatted at "jonschullaim" I had a great project vpython project in mind for the weekend. But here I am working on installs (he said bitterly). On Dec 20, 2003, at 6:15 PM, Jonathan Brandmeyer wrote: > On Sat, 2003-12-20 at 15:46, Jon Schull wrote: >> Assuming that I need python 2.2.3 (not OS X 10.3's native python >> 2.3),I've been able to step through all instructions >> athttp://vpython.org/OSX_download.html right up to typing vpython. > > Well, I'm afraid that VPython hasn't yet run on 10.3 to my knowledge, > and I know that the binary package on vpython.org is incompatible with > 10.3. Chances are that I would need to do some experimentation to make > it work. I've heard that 10.3's stock Python doesn't include tkinter > either, so that is going to be another interesting thing to work out :) > > We don't have a 10.3 machine on campus that I have access to yet, and > Dr. Sherwood is on vacation right now. If someone would like to > volunteer a non-administrative user account with SSH access I could do > some work on this as soon as the 23rd. > > On another note, if it is possible for us to supply a package that > doesn't depend on fink but was larger (probably several megabytes), is > that something that people are interested in? Or would you rather get > a > smaller package that uses fink for some of its dependencies (eg, gtk+)? > > -Jonathan Brandmeyer > > > > ------------------------------------------------------- > This SF.net email is sponsored by: IBM Linux Tutorials. > Become an expert in LINUX or just sharpen your skills. Sign up for > IBM's > Free Linux Tutorials. Learn everything from the bash shell to sys > admin. > Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > ------------------ Jon Schull, Ph.D. Associate Professor Information Technology Rochester Institute of Technology sc...@di... 585-738-6696 |
From: Jonathan B. <jbr...@ea...> - 2003-12-20 23:15:24
|
On Sat, 2003-12-20 at 15:46, Jon Schull wrote: > Assuming that I need python 2.2.3 (not OS X 10.3's native python > 2.3),I've been able to step through all instructions > athttp://vpython.org/OSX_download.html right up to typing vpython. Well, I'm afraid that VPython hasn't yet run on 10.3 to my knowledge, and I know that the binary package on vpython.org is incompatible with 10.3. Chances are that I would need to do some experimentation to make it work. I've heard that 10.3's stock Python doesn't include tkinter either, so that is going to be another interesting thing to work out :) We don't have a 10.3 machine on campus that I have access to yet, and Dr. Sherwood is on vacation right now. If someone would like to volunteer a non-administrative user account with SSH access I could do some work on this as soon as the 23rd. On another note, if it is possible for us to supply a package that doesn't depend on fink but was larger (probably several megabytes), is that something that people are interested in? Or would you rather get a smaller package that uses fink for some of its dependencies (eg, gtk+)? -Jonathan Brandmeyer |
From: Gary P. <pa...@in...> - 2003-12-20 22:42:34
|
Not sure, but I can add two comments. First: vpython works with the fink version of python 2.3. Not the one that ships with OSX, I believe. I tripped on the Apple SDK. It comes with several packages. You want to make sure that you install DevTools.pkg and DevSDK.pkg. Installing only Developer.pkg didn't work for me. I think I'd try installing python2.3. You don't have to uninstall 2.2 (ymmv) but you better make sure that /sw/bin/python calls the right version. (just type "python" at the bash prompt and see what comes up.) Of course you can gronk 2.2 if you want. oh ... my installation is on 10.2 so .... -gary > > > ----- Original Message ----- > From: "Jon Schull" <js...@so...> > To: <vis...@li...> > Sent: Saturday, December 20, 2003 3:46 PM > Subject: [Visualpython-users] installing vpython on OS X 10.3 > > Assuming that I need python 2.2.3 (not OS X 10.3's native python 2.3), > I've been able to step through all instructions at > http://vpython.org/OSX_download.html right up to typing vpython. > > At that point I get the error, "No module named _socket" > > Traceback (most recent call last): > File "/sw/lib/python2.2/site-packages/visual/idle_VPython/idle.py", > line 3, in ? > import PyShell > File > "/sw/lib/python2.2/site-packages/visual/idle_VPython/PyShell.py", line > 31, in ? > import protocol > File > "/sw/lib/python2.2/site-packages/visual/idle_VPython/protocol.py", line > 83, in ? > import socket > File "/sw/lib/python2.2/socket.py", line 41, in ? > from _socket import * > ImportError: No module named _socket > > The following don't help either > sudo /sw/bin/fink update python22 > Information about 158 packages read in 1 seconds. > No packages to install. > [208-186-56-189:lib/python2.2/site-packages] jis% fink update > python22-shlibs > sudo /sw/bin/fink update python22-shlibs > Information about 158 packages read in 0 seconds. > No packages to install. > [208-186-56-189:lib/python2.2/site-packages] jis% fink update > python22-socket > sudo /sw/bin/fink update python22-socket > Information about 158 packages read in 1 seconds. > No packages to install. > > Here's what's in /sw/lib/python2.2/site-packages/ > Numeric README idlelib > Numeric.pth cvisualmodule.so visual > > help...? > > > ------------------ > Jon Schull, Ph.D. > Associate Professor > Information Technology > Rochester Institute of Technology > sc...@di... 585-738-6696 |
From: Jon S. <js...@so...> - 2003-12-20 20:46:11
|
Assuming that I need python 2.2.3 (not OS X 10.3's native python 2.3), I've been able to step through all instructions at http://vpython.org/OSX_download.html right up to typing vpython. At that point I get the error, "No module named _socket" Traceback (most recent call last): File "/sw/lib/python2.2/site-packages/visual/idle_VPython/idle.py", line 3, in ? import PyShell File "/sw/lib/python2.2/site-packages/visual/idle_VPython/PyShell.py", line 31, in ? import protocol File "/sw/lib/python2.2/site-packages/visual/idle_VPython/protocol.py", line 83, in ? import socket File "/sw/lib/python2.2/socket.py", line 41, in ? from _socket import * ImportError: No module named _socket The following don't help either sudo /sw/bin/fink update python22 Information about 158 packages read in 1 seconds. No packages to install. [208-186-56-189:lib/python2.2/site-packages] jis% fink update python22-shlibs sudo /sw/bin/fink update python22-shlibs Information about 158 packages read in 0 seconds. No packages to install. [208-186-56-189:lib/python2.2/site-packages] jis% fink update python22-socket sudo /sw/bin/fink update python22-socket Information about 158 packages read in 1 seconds. No packages to install. Here's what's in /sw/lib/python2.2/site-packages/ Numeric README idlelib Numeric.pth cvisualmodule.so visual help...? ------------------ Jon Schull, Ph.D. Associate Professor Information Technology Rochester Institute of Technology sc...@di... 585-738-6696 |
From: David A. <DAn...@co...> - 2003-12-11 06:18:12
|
Using py2exe-0.5.0a5 (the latest version from sourceforge) I was able to build and run "stars.exe". I used the following "setup.py" file and ran "python setup.py py2exe" - t= he build process gave a warning about a missing "dotblas" (part of the Numeric package I believe), but the resulting executeable ran with no problem. I also built "stonehenge.exe" - it also worked. --- file setup.py from distutils.core import setup import py2exe setup( console =3D ["stars.py"], ) |
From: <eh...@uc...> - 2003-12-11 00:47:45
|
apologies for a hasty question, but i figured it out. i added environment variables for both PYTHON_VERSION and PYTHON. ----- Original Message ----- From: eh...@uc... Date: Wednesday, December 10, 2003 4:24 pm Subject: [Visualpython-users] configure problems > Thanks if you can help me figure this out. > I've got both python2.2 and python2.3 (RH9), but want to configure > visual with 2.3. Numeric is installed and works with 2.3. I've > tried using $PYTHON=, $PYTHON_VERSION=, and --prefix= but always > get the following errors(see additional note *** below): > > checking whether to enable maintainer-specific portions of > Makefiles... no > checking for a Python interpreter with version >= 2.2... python > checking for python... /usr/bin/python > > ***(2.3 is here: /usr/bin/python2.3, but configure always looks for > this pyhon which is 2.2)*** > > checking for python version... /usr/lib/python2.3/os.py:282: > Warning: 'yield' will become a reserved keyword in > the future > 'import site' failed; use -v for traceback > 2.2 > checking for python platform... /usr/lib/python2.3/os.py:282: > Warning: 'yield' will become a reserved keyword in the future > 'import site' failed; use -v for traceback > linux2 > checking for script directory... ${prefix}/lib/python2.2/site- > packageschecking for extension module directory... > ${exec_prefix}/lib/python2.2/site-packages > checking for array in python module Numeric... no > configure: error: Numeric Python is required. See > numpy.sourceforge.net or your local OS distribution. > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: <eh...@uc...> - 2003-12-11 00:24:59
|
Thanks if you can help me figure this out. I've got both python2.2 and python2.3 (RH9), but want to configure visual with 2.3. Numeric is installed and works with 2.3. I've tried using $PYTHON=, $PYTHON_VERSION=, and --prefix= but always get the following errors(see additional note *** below): checking whether to enable maintainer-specific portions of Makefiles... no checking for a Python interpreter with version >= 2.2... python checking for python... /usr/bin/python ***(2.3 is here: /usr/bin/python2.3, but configure always looks for this pyhon which is 2.2)*** checking for python version... /usr/lib/python2.3/os.py:282: Warning: 'yield' will become a reserved keyword in the future 'import site' failed; use -v for traceback 2.2 checking for python platform... /usr/lib/python2.3/os.py:282: Warning: 'yield' will become a reserved keyword in the future 'import site' failed; use -v for traceback linux2 checking for script directory... ${prefix}/lib/python2.2/site-packages checking for extension module directory... ${exec_prefix}/lib/python2.2/site-packages checking for array in python module Numeric... no configure: error: Numeric Python is required. See numpy.sourceforge.net or your local OS distribution. |