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: Poul R. <Pou...@sk...> - 2012-10-13 10:53:29
|
Bru...@nc... writes: >so I assume you are asking whether there is a way to permit autoscaling >but force the scale factors to be equal. Yes, that's what I want. I hope that someone can give me a hint on how to do it. In the minimal example below I want the spiral to keep its shape fixed, still autoscaling when points fall outside the actual window. BTW, running the example results in the following error message on my computer: VPython WARNING: errors in shader program: It does not seem to be fatal but I would like to know what the reason is and how to get rid of it. from visual import * import visual.graph as visualgraph from time import * spiralgraph=visualgraph.gdisplay(title='Spiral', ytitle='x', xtitle='y', x=0, y=0, width=800, height=800,foreground=visualgraph.color.black, background=visualgraph.color.white) spiralplot = visualgraph.gdots(color=visualgraph.crayola.blue,display=spiralgraph) for i in range(0,3600): t=pi*i/360 spiralplot.plot(pos=(t*cos(t),t*sin(t))) sleep(0.001) |
From: Bruce S. <Bru...@nc...> - 2012-10-13 03:14:13
|
You can of course specify the axis scales explicitly, so I assume you are asking whether there is a way to permit autoscaling but force the scale factors to be equal. No, there isn't a way to do that. However, note that the graph module is pure VPython, so feel free to implement what you want. Bruce Sherwood On Oct 12, 2012 9:31 AM, "Poul Riis" <Pou...@sk...> wrote: > ** ** > How can I force gdisplay to use the same scale on both axes? > > Poul Riis > > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > |
From: Poul R. <Pou...@sk...> - 2012-10-12 15:30:45
|
How can I force gdisplay to use the same scale on both axes? Poul Riis |
From: Bruce S. <Bru...@nc...> - 2012-10-11 16:19:37
|
Shaders, which are programs that run in Graphics Processing Units (GPUs) on the graphics card, are invoked by VPython only for programs that involve materials such as materials.wood. VPython attempts to identify computers that lack GPUs (a netbook might well fall into that category) and just display objects without materials, and issues a message to that effect. The message is just informational; the program should run, just not display with material properties. >From the download page at vpython.org: Materials such as wood will work with graphics cards that support Pixel Shader 3.0 ("PS 3.0"). See http://en.wikipedia.org/wiki/Pixel_shader#Hardware. Some materials may work with graphics cards that support PS 2.0, but other materials may need to be manually disabled: In the folder C:\PythonNN\Lib\site-packages\vis, edit the file site-settings.py to uncomment one or the other pair of Python statements. If the graphics hardware does not support pixel shaders, the material property is ignored. If you think you should be able to use materials but have trouble with their display or performance, we highly recommend upgrading your video card drivers to the latest version. Bruce Sherwood On Thu, Oct 11, 2012 at 10:04 AM, Jim Deane <jim...@gm...> wrote: > One of my exchange students from Italy has an EEEpc (a netbook) with Windows > Starter Edition on it. She has installed VPython (using Python 2.7 from the > VPython.org site) twice, and we keep running into errors when trying to run > VPython files. I'm sorry I do not have the errors written down, but I > believe one of them was a compile error having to do with the shader (or > some combination of keywords like that). > > I have not had a chance to sit down and fully go through the install with > her, but before I start troubleshooting on my own (with the associated > language difficulties), is there a known problem with running VPython on a > netbook running Windows Starter Edition? > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Jim D. <jim...@gm...> - 2012-10-11 16:04:52
|
One of my exchange students from Italy has an EEEpc (a netbook) with Windows Starter Edition on it. She has installed VPython (using Python 2.7 from the VPython.org site) twice, and we keep running into errors when trying to run VPython files. I'm sorry I do not have the errors written down, but I believe one of them was a compile error having to do with the shader (or some combination of keywords like that). I have not had a chance to sit down and fully go through the install with her, but before I start troubleshooting on my own (with the associated language difficulties), is there a known problem with running VPython on a netbook running Windows Starter Edition? |
From: Cowal, V. <vc...@je...> - 2012-10-08 18:24:32
|
Thanks to all who have responded. I had suspected that, in most cases at least, the students were not following directions to install the correct version for the operating system. I got worried when I read on python.org about the Tcl/Tk issues with different OS X versions, not sure whether that applied here... I will report back specifics if anyone continues to have a problem. Vince Cowal From: Cowal, Vince Sent: Sunday, October 07, 2012 8:47 AM To: vis...@li... Subject: Mac OS X install questions The vpython.org download page for python 3.2 links to a .dmg file on the python site for Mac OS X 10.3-10.6. I do not have a Mac, and many of my students who do use Macs are saying the 10.3 dmg file "is not working" with vpython. What I find particularly confusing is that the 10.3 dmg file is stated as being for OS X 10.3 to 10.6, and then the more recent file is for 10.6 to 10.7. Perhaps the intervals are only half-open, but it looks to the students as if either one should work for 10.6. I have two questions. 1. Will Visual Python work with the more recent .dmg file for Python 3.2 for Max OS X 10.6 and later? 2. Will Visual Python work with either of the Python 3.3 installs for Mac? Thanks in advance for any help you can provide. Vince |
From: tvschem <tv...@sb...> - 2012-10-08 15:51:02
|
Bruce, Vpython is working fine for me on mountain lion. Paul ____________________________ Paul D. Price Science Department Chairman Trinity Valley School tv...@sb... Sent from my iPad On Oct 7, 2012, at 3:53 PM, Bruce Sherwood <Bru...@nc...> wrote: > There is some confusion about OSX version numbers (the OSX versions > with which a particular Python will work are overly conservative), but > at least until recently the files available on the vpython.org Mac > download page definitely worked. However, I wonder whether the latest > Mac OSX (Mountain Lion) has broken VPython. Does someone on this list > have access to Mountain Lion and can report whether VPython works? > > As for your students, what version of OSX are they using? > > Because the bulk of VPython is written in C++, it has to be compiled > for specific versions of Python. So no, you can't take a VPython > module built for some version of Python other than 3.3 and use it with > Python 3.3. > > Bruce Sherwood > > On Sun, Oct 7, 2012 at 9:46 AM, Cowal, Vince <vc...@je...> wrote: >> The vpython.org download page for python 3.2 links to a .dmg file on the >> python site for Mac OS X 10.3-10.6. I do not have a Mac, and many of my >> students who do use Macs are saying the 10.3 dmg file "is not working" with >> vpython. What I find particularly confusing is that the 10.3 dmg file is >> stated as being for OS X 10.3 to 10.6, and then the more recent file is for >> 10.6 to 10.7. Perhaps the intervals are only half-open, but it looks to the >> students as if either one should work for 10.6. >> >> I have two questions. >> >> 1. Will Visual Python work with the more recent .dmg file for Python 3.2 >> for Max OS X 10.6 and later? >> 2. Will Visual Python work with either of the Python 3.3 installs for Mac? >> >> Thanks in advance for any help you can provide. >> Vince >> >> ------------------------------------------------------------------------------ >> Don't let slow site performance ruin your business. Deploy New Relic APM >> Deploy New Relic app performance management and know exactly >> what is happening inside your Ruby, Python, PHP, Java, and .NET app >> Try New Relic at no cost today and get our sweet Data Nerd shirt too! >> http://p.sf.net/sfu/newrelic-dev2dev >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Paul C. <PC...@sp...> - 2012-10-08 14:35:10
|
I have several students who have been unable to install it on their Macs. I'm not familiar enough with OSX to figure out why. Dr. Paul J. Camp Physics Department Spelman College Atlanta, GA 30314 404-270-5864 "The beauty of the cosmos derives not only from unity in variety but also from variety in unity" -- Umberto Eco The Name of the Rose From: Robert J Beichner <bei...@nc...> To: vis...@li... Date: 10/08/2012 08:03 AM Subject: Re: [Visualpython-users] Visualpython-users Digest, Vol 76, Issue 1 VPython works just fine with the latest version of the Mac operating system, 10.8.1, commonly known as Mountain Lion. Bob Beichner NCSU Physics ------------------------------------------------------------------------------ Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening inside your Ruby, Python, PHP, Java, and .NET app Try New Relic at no cost today and get our sweet Data Nerd shirt too! http://p.sf.net/sfu/newrelic-dev2dev _______________________________________________ Visualpython-users mailing list Vis...@li... https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Robert J B. <bei...@nc...> - 2012-10-08 12:01:53
|
VPython works just fine with the latest version of the Mac operating system, 10.8.1, commonly known as Mountain Lion. Bob Beichner NCSU Physics |
From: Michael A. <kmi...@gm...> - 2012-10-08 07:39:59
|
On 2012-10-07 20:53:48 +0000, Bruce Sherwood said: > There is some confusion about OSX version numbers (the OSX versions > with which a particular Python will work are overly conservative), but > at least until recently the files available on the vpython.org Mac > download page definitely worked. However, I wonder whether the latest > Mac OSX (Mountain Lion) has broken VPython. Does someone on this list > have access to Mountain Lion and can report whether VPython works? I am running Mountain Lion. Just tried the path with Python 2.7.3 and the appropriate VPython….5.74 Seems to work, I can run bounce2.py with VIDLE and am also able to start the tutorial with the sphere and wall within ipython, with the usual problem that when closing the visual scene window the ipython closes as well. Forgot if there was a solution to that? That's all I can say for now. Michael > > As for your students, what version of OSX are they using? > > Because the bulk of VPython is written in C++, it has to be compiled > for specific versions of Python. So no, you can't take a VPython > module built for some version of Python other than 3.3 and use it with > Python 3.3. > > Bruce Sherwood > > On Sun, Oct 7, 2012 at 9:46 AM, Cowal, Vince > <vc...@je...> wrote: >> The vpython.org download page for python 3.2 links to a .dmg file on the >> python site for Mac OS X 10.3-10.6. I do not have a Mac, and many of my >> students who do use Macs are saying the 10.3 dmg file "is not working" with >> vpython. What I find particularly confusing is that the 10.3 dmg file is >> stated as being for OS X 10.3 to 10.6, and then the more recent file is for >> 10.6 to 10.7. Perhaps the intervals are only half-open, but it looks to the >> students as if either one should work for 10.6. >> >> I have two questions. >> >> 1. Will Visual Python work with the more recent .dmg file for Python 3.2 >> for Max OS X 10.6 and later? >> 2. Will Visual Python work with either of the Python 3.3 installs for Mac? >> >> Thanks in advance for any help you can provide. >> Vince >> >> ------------------------------------------------------------------------------ >> Don't let slow site performance ruin your business. Deploy New Relic APM >> Deploy New Relic app performance management and know exactly >> what is happening inside your Ruby, Python, PHP, Java, and .NET app >> Try New Relic at no cost today and get our sweet Data Nerd shirt too! >> http://p.sf.net/sfu/newrelic-dev2dev >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev |
From: Bruce S. <Bru...@nc...> - 2012-10-07 20:53:58
|
There is some confusion about OSX version numbers (the OSX versions with which a particular Python will work are overly conservative), but at least until recently the files available on the vpython.org Mac download page definitely worked. However, I wonder whether the latest Mac OSX (Mountain Lion) has broken VPython. Does someone on this list have access to Mountain Lion and can report whether VPython works? As for your students, what version of OSX are they using? Because the bulk of VPython is written in C++, it has to be compiled for specific versions of Python. So no, you can't take a VPython module built for some version of Python other than 3.3 and use it with Python 3.3. Bruce Sherwood On Sun, Oct 7, 2012 at 9:46 AM, Cowal, Vince <vc...@je...> wrote: > The vpython.org download page for python 3.2 links to a .dmg file on the > python site for Mac OS X 10.3-10.6. I do not have a Mac, and many of my > students who do use Macs are saying the 10.3 dmg file "is not working" with > vpython. What I find particularly confusing is that the 10.3 dmg file is > stated as being for OS X 10.3 to 10.6, and then the more recent file is for > 10.6 to 10.7. Perhaps the intervals are only half-open, but it looks to the > students as if either one should work for 10.6. > > I have two questions. > > 1. Will Visual Python work with the more recent .dmg file for Python 3.2 > for Max OS X 10.6 and later? > 2. Will Visual Python work with either of the Python 3.3 installs for Mac? > > Thanks in advance for any help you can provide. > Vince > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Cowal, V. <vc...@je...> - 2012-10-07 15:59:59
|
The vpython.org download page for python 3.2 links to a .dmg file on the python site for Mac OS X 10.3-10.6. I do not have a Mac, and many of my students who do use Macs are saying the 10.3 dmg file "is not working" with vpython. What I find particularly confusing is that the 10.3 dmg file is stated as being for OS X 10.3 to 10.6, and then the more recent file is for 10.6 to 10.7. Perhaps the intervals are only half-open, but it looks to the students as if either one should work for 10.6. I have two questions. 1. Will Visual Python work with the more recent .dmg file for Python 3.2 for Max OS X 10.6 and later? 2. Will Visual Python work with either of the Python 3.3 installs for Mac? Thanks in advance for any help you can provide. Vince |
From: Guy K. K. <guy...@au...> - 2012-09-23 05:57:42
|
On 11/09/12 02:43, John Zelle wrote: > sudo apt-get install libgl1-mesa-glx=8.0.2-0ubuntu3 libglapi-mesa=8.0.2-0ubuntu3 > > This reverts from the 8.0.3 version of these packages down to the 8.0.2 that was the original install and that the stock NVIDIA drivers are apparently built against. > > So we now have Vpython working on 64-bit Ubuntu using both the stock NVIDIA drivers and python-visual that come with Ubuntu. Helps just as well on some 32 bit systems with NVIDIA drivers here. Cool! Thx, Guy -- Guy K. Kloss School of Computing + Mathematical Sciences Auckland University of Technology Private Bag 92006, Auckland 1142 phone: +64 9 921 9999 ext. 5032 eMail: Guy...@au... |
From: Bruce S. <Bru...@nc...> - 2012-09-23 04:20:11
|
Fixed. Thanks! Bruce Sherwood On Sat, Sep 22, 2012 at 9:29 PM, Guy K. Kloss <guy...@au...> wrote: > The URLs on the vpython.org web page to the Github source code > repositories are broken. They link to http://\\github.com/vpython. There > are no backslashes in URLs. > > Guy > > -- > Guy K. Kloss > School of Computing + Mathematical Sciences > Auckland University of Technology > Private Bag 92006, Auckland 1142 > phone: +64 9 921 9999 ext. 5032 > eMail: Guy...@au... > > > ------------------------------------------------------------------------------ > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics > Download AppDynamics Lite for free today: > http://ad.doubleclick.net/clk;258768047;13503038;j? > http://info.appdynamics.com/FreeJavaPerformanceDownload.html > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Guy K. K. <guy...@au...> - 2012-09-23 03:54:12
|
I have added information to the existing bug on launchpad for the python-visual package. Let's hope that the maintainer knows what to do in order to escalate it to the right instances to get it resolved for the future. Also, if you're on Ubuntu and have got the problem, you may want to mark yourself as being affected in order to increase the priority of the bug, and improve chances of somebody working on it. Also, if you do have further insights, a further confirmation, or other conditions under which it occurs, please also specify those in an additional comment. https://bugs.launchpad.net/ubuntu/+source/python-visual/+bug/787932 Thanks, Guy -- Guy K. Kloss School of Computing + Mathematical Sciences Auckland University of Technology Private Bag 92006, Auckland 1142 phone: +64 9 921 9999 ext. 5032 eMail: Guy...@au... |
From: Guy K. K. <guy...@au...> - 2012-09-23 03:29:41
|
The URLs on the vpython.org web page to the Github source code repositories are broken. They link to http://\\github.com/vpython. There are no backslashes in URLs. Guy -- Guy K. Kloss School of Computing + Mathematical Sciences Auckland University of Technology Private Bag 92006, Auckland 1142 phone: +64 9 921 9999 ext. 5032 eMail: Guy...@au... |
From: Guy K. K. <guy...@au...> - 2012-09-23 01:21:27
|
On 11/09/12 02:43, John Zelle wrote: > So we now have Vpython working on 64-bit Ubuntu using both the stock NVIDIA drivers and python-visual that come with Ubuntu. Awesome! As said before, this is something that should be communicated upstream to the package maintainers. They've got some leverage to get the dependencies right. Guy -- Guy K. Kloss School of Computing + Mathematical Sciences Auckland University of Technology Private Bag 92006, Auckland 1142 phone: +64 9 921 9999 ext. 5032 eMail: Guy...@au... |
From: Aaron T. <hpu...@gm...> - 2012-09-21 21:34:13
|
Check out this supercomputer. And they used Python too :-) http://www2.electronicproducts.com/Supercomputer_built_using_Raspberry_Pi_and_Legos-article-fajb_raspberry_pi_legos_sep2012-html.aspx Aaron |
From: Antonio G. <aga...@gm...> - 2012-09-11 21:16:57
|
I just modify a bit the vpython code to admit a new stereo mode called "real". This mode, try to simulate the real vision, what an observer view in the real world. I have used the stereodepth as a half distance between eyes, although I should have create a new parameter. I've used a real vector rather normalized vector because,I think is more realistic. This mode doesn't use the range (gcf) value, that it's not needed. You can make the zoom using the user scale. This mode fix the point of view of the two cameras separated by a given distance and look at the center. It's the first version, and probably there will be things to improve.I need this mode for my project, I'm working in a stereoscopic robot, and I using vpython as a way to represent (for now) a simple reality. I attach the new code display_kernel.cpp display_kernel.hpp and ui.py Best regards, |
From: Paul C. <PC...@sp...> - 2012-09-11 20:42:05
|
Found Fedora 7 and 9 rpms of VPython but they will not install. They gripe about not having boost-python and libxml installed though both of those verify as already installed. Dr. Paul J. Camp Physics Department Spelman College Atlanta, GA 30314 404-270-5864 "The beauty of the cosmos derives not only from unity in variety but also from variety in unity" -- Umberto Eco The Name of the Rose From: "Frank W. Samuelson" <fr...@me...> To: Paul Camp <PC...@sp...> Cc: vis...@li... Date: 09/10/2012 05:36 PM Subject: Re: [Visualpython-users] Visual Python on Scientifc Linux? I have not done it, but here are some suggestions. 1. Install gtkglextmm-devel too, and the -devel package for any other dependency that you see, e.g. gtkglext-devel and libXmu-devel and libglademm24-devel. 2. If you want to avoid compiling altogether, try installing a python-visual rpm from a slightly older version of Fedora (like Fedora 11, 12 or 13). Often older Fedora packages will install on CentOS/RHEL. 3. Build python-visual from a Fedora source rpm. rpmbuild --rebuild python-visual-etc-f12-src.rpm This will require all the dependencies that are in (1), but you'll have a nice package for installation. On Mon, 10 Sep 2012, Paul Camp wrote: > Or any other Red Hat derived linux, like CentOS, would probably help. > > I can't find a package or I'd go that route. Building from source produces > an error during configure that I need gtkglextmm 1.2. I downloaded that > and successfully (apparently -- no error messages) made it. But then > trying to configure VPython produces the same error. I also found an rpm > for gtkglextmm, installed it (again apparently successfully) and Vpython > still won't configure. > > I am now officially at my wits end. Has anyone else managed to do this? > > > Dr. Paul J. Camp > Physics Department > Spelman College > Atlanta, GA 30314 > 404-270-5864 > > "The beauty of the cosmos derives not only from unity in variety > but also from variety in unity" > -- Umberto Eco > The Name of the Rose ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Visualpython-users mailing list Vis...@li... https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Paul C. <PC...@sp...> - 2012-09-11 19:23:46
|
Thanks for the advice but this is not working for me and I don't have additional time to spend on it right now. I run into the following problems: 1. Can't apparently have gtkglextmm-devel. It is not in any of the Scientific Linux repositories, nor rpmforge nor atrpms. An rpm can be located on the web and downloaded, and the installation appears to complete but it doesn't actually do anything. 2. The earliest Fedora version I can locate is 15 for which there are a host of dependency failures. To wit: 3. Wants Python 2.7 and SL only goes up to 2.6. That I took care of. 4. Wants glibc 3.4.15 but glibc doesn't appear to exist in a version higher than 2.14 5. Wants the boost libraries which I installed yesterday. Or appeared to. Could have been like #1 above. 6. Wants gtkglextmm (not devel) but yum tells me that is already installed. In short, it looks like a conflict between the dependency demands of visual python for fedora 15, some broken packages, and the long term stability needs of SL. Since this isn't a critical need at the moment, I don't think I want to wade into this swamp unless someone has an idea I haven't thought of. Dr. Paul J. Camp Physics Department Spelman College Atlanta, GA 30314 404-270-5864 "The beauty of the cosmos derives not only from unity in variety but also from variety in unity" -- Umberto Eco The Name of the Rose From: "Frank W. Samuelson" <fr...@me...> To: Paul Camp <PC...@sp...> Cc: vis...@li... Date: 09/10/2012 05:36 PM Subject: Re: [Visualpython-users] Visual Python on Scientifc Linux? I have not done it, but here are some suggestions. 1. Install gtkglextmm-devel too, and the -devel package for any other dependency that you see, e.g. gtkglext-devel and libXmu-devel and libglademm24-devel. 2. If you want to avoid compiling altogether, try installing a python-visual rpm from a slightly older version of Fedora (like Fedora 11, 12 or 13). Often older Fedora packages will install on CentOS/RHEL. 3. Build python-visual from a Fedora source rpm. rpmbuild --rebuild python-visual-etc-f12-src.rpm This will require all the dependencies that are in (1), but you'll have a nice package for installation. On Mon, 10 Sep 2012, Paul Camp wrote: > Or any other Red Hat derived linux, like CentOS, would probably help. > > I can't find a package or I'd go that route. Building from source produces > an error during configure that I need gtkglextmm 1.2. I downloaded that > and successfully (apparently -- no error messages) made it. But then > trying to configure VPython produces the same error. I also found an rpm > for gtkglextmm, installed it (again apparently successfully) and Vpython > still won't configure. > > I am now officially at my wits end. Has anyone else managed to do this? > > > Dr. Paul J. Camp > Physics Department > Spelman College > Atlanta, GA 30314 > 404-270-5864 > > "The beauty of the cosmos derives not only from unity in variety > but also from variety in unity" > -- Umberto Eco > The Name of the Rose ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Visualpython-users mailing list Vis...@li... https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Frank W. S. <fr...@me...> - 2012-09-10 21:35:22
|
I have not done it, but here are some suggestions. 1. Install gtkglextmm-devel too, and the -devel package for any other dependency that you see, e.g. gtkglext-devel and libXmu-devel and libglademm24-devel. 2. If you want to avoid compiling altogether, try installing a python-visual rpm from a slightly older version of Fedora (like Fedora 11, 12 or 13). Often older Fedora packages will install on CentOS/RHEL. 3. Build python-visual from a Fedora source rpm. rpmbuild --rebuild python-visual-etc-f12-src.rpm This will require all the dependencies that are in (1), but you'll have a nice package for installation. On Mon, 10 Sep 2012, Paul Camp wrote: > Or any other Red Hat derived linux, like CentOS, would probably help. > > I can't find a package or I'd go that route. Building from source produces > an error during configure that I need gtkglextmm 1.2. I downloaded that > and successfully (apparently -- no error messages) made it. But then > trying to configure VPython produces the same error. I also found an rpm > for gtkglextmm, installed it (again apparently successfully) and Vpython > still won't configure. > > I am now officially at my wits end. Has anyone else managed to do this? > > > Dr. Paul J. Camp > Physics Department > Spelman College > Atlanta, GA 30314 > 404-270-5864 > > "The beauty of the cosmos derives not only from unity in variety > but also from variety in unity" > -- Umberto Eco > The Name of the Rose |
From: Thomas S. <to...@fe...> - 2012-09-10 21:15:37
|
On Mon, Sep 10, 2012 at 10:00 PM, Paul Camp <PC...@sp...> wrote: > Or any other Red Hat derived linux, like CentOS, would probably help. > > I can't find a package or I'd go that route. Building from source produces > an error during configure that I need gtkglextmm 1.2. I downloaded that and > successfully (apparently -- no error messages) made it. But then trying to > configure VPython produces the same error. I also found an rpm for > gtkglextmm, installed it (again apparently successfully) and Vpython still > won't configure. Where do you have the gtkglextmm from? You also need to install gtkglextmm-devel for proper building. > I am now officially at my wits end. Has anyone else managed to do this? I just tried to build in on EPEL, but I couldn't find gtkglextmm-devel: http://kojipkgs.fedoraproject.org//work/tasks/3390/4473390/root.log Greetings, Tom |
From: Paul C. <PC...@sp...> - 2012-09-10 20:16:40
|
Or any other Red Hat derived linux, like CentOS, would probably help. I can't find a package or I'd go that route. Building from source produces an error during configure that I need gtkglextmm 1.2. I downloaded that and successfully (apparently -- no error messages) made it. But then trying to configure VPython produces the same error. I also found an rpm for gtkglextmm, installed it (again apparently successfully) and Vpython still won't configure. I am now officially at my wits end. Has anyone else managed to do this? Dr. Paul J. Camp Physics Department Spelman College Atlanta, GA 30314 404-270-5864 "The beauty of the cosmos derives not only from unity in variety but also from variety in unity" -- Umberto Eco The Name of the Rose |
From: Bruce S. <Bru...@nc...> - 2012-09-10 17:35:07
|
Awesome! Thanks! I've posted your information on the vpython.org Linux download page. Bruce Sherwood On Mon, Sep 10, 2012 at 8:43 AM, John Zelle <joh...@wa...> wrote: > Hi All, > > I think we have tracked down the problem with Vpython seg faulting on 64 bit Ubuntu with NVIDIA drivers. It appears that some packages install a minor version upgrade of some glx libraries that cause the breakage. The following command restores a working VPython for us: > > sudo apt-get install libgl1-mesa-glx=8.0.2-0ubuntu3 libglapi-mesa=8.0.2-0ubuntu3 > > This reverts from the 8.0.3 version of these packages down to the 8.0.2 that was the original install and that the stock NVIDIA drivers are apparently built against. > > So we now have Vpython working on 64-bit Ubuntu using both the stock NVIDIA drivers and python-visual that come with Ubuntu. > > --John > > John Zelle, PhD > Professor of Computer Science > Wartburg College > > > ________________________________________ > From: Bruce Sherwood [Bru...@nc...] > Sent: Monday, September 03, 2012 10:45 AM > To: vpusers > Subject: Re: [Visualpython-users] seg faulting > > I guess this proves that my experience with the Boost libraries is > irrelevant. Thanks for this further analysis. > > Bruce Sherwood > > On Mon, Sep 3, 2012 at 7:38 AM, John Zelle <joh...@wa...> wrote: >> Hi All, >> >> Let me second what Guy is saying. I am attempting to run VPython using the stock Ubuntu package (python-visual Ubuntu 12.04, 64 bit), not building it myself. It works out of the box with a clean install and update of all installed packages. However, it appears that some other package that I install later on breaks VPython. It also appears that the issue is somehow tied to NVIDIA drivers, since I don't have this problem on machines with Intel graphics. Others have reported that the seg fault starts after updating the NVIDIA pacakges for CUDA. I have not done that (yet), so it appears the problem is more general than that. Hopefully, we'll be able to track down the offending packages once I get some lab help back later this week. >> >> --John >> >> John Zelle, PhD >> Professor of Computer Science >> Wartburg College > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users |