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: Bruce S. <Bru...@nc...> - 2013-01-25 22:55:35
|
It occurs to me that a note I posted to the wxPython forum might be of some interest to the VPython community: You might like to see how far we've gotten, with lots of help from this wxPython community. Below is a screen shot of the wxPython-based VPython (the image of this demo came from Windows and also displays correctly on Linux; everything but the menus works on a Mac). In the past, the 3D canvas had to fill the window; there couldn't be other widgets in the window. In the program, the 3D cube rotates, and the controls let you change the color, the rotation speed, and the rotation direction, and you can also type into the text control. The 3D portion of the code is pretty trivial. The first statement creates a window and the second places an OpenGL canvas in the left half of the window. You'll note that some adjustment is made so that the canvas is L*L but the window is larger. w = window(width=2*(L+window.get_dw()), height=L+window.get_dh(), title='Widgets') display(window=w, y = 0, width=L, height=L, forward=-vector(0,1,2)) cube = box(color=color.red) ... wxPython code to make widgets for setting color, and rotation speed and direction while True: rate(100) cube.rotate(axis=(0,1,0), angle=cube.dir*cube.dtheta) Of equal importance to widgets is the fact that it was possible to eliminate very nearly all platform-dependent C++ code (there are small instances of platform-dependent Python code, but that's trivial). The only remaining platform-dependent C++ code is GetProcAddress. Of critical importance is that the new VPython works on 64-bit Cocoa-based Macs, something that was impossible with the old VPython, which was Carbon-based. I've also run up against a significant platform-dependent display issue which I've "solved" temporarily on one particular Linux with hard-coded integers. The VPython API has always had the user specify the width and height of a window as the outer bounds, so that one can easily place (say) two windows adjacent to each other or one below the other, with the canvas being smaller than that. I need to know the dimensions of the writable area, but unfortunately only for Windows will wxWidgets give me the dimensions of borders, title bar, and menu bar. For Mac and Linux, the values are all -1. For both Windows and Mac, these values are probably extremely stable (I use hard-coded integers for the Mac), but on different distributions of Linux, or for different window managers on the same Linux, I don't know how to get the dimension information I need. Note that my problems are somewhat different from those using wxPython to create apps. VPython is middleware; people use VPython to create apps. This puts an additional burden on VPython to be universally cross-platform, not just cross-platform for a particular app. Availability note: At vpython.org one can get an experimental version of the wxPython-based VPython, but the support for widgets isn't yet included even in that experimental package. However, the up-to-date source code is available at https://github.com/BruceSherwood/vpython-wx. The program widgets.py that generated the image is at the repository in site-packages/visual/examples. [image: Inline image 1] |
From: Sebastian S. <sch...@go...> - 2013-01-22 23:28:52
|
This is my grafic gard: 00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 0c) [ 5.357] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so [ 5.357] (II) Module intel: vendor="X.Org Foundation" [ 5.357] compiled for 1.13.0, module version = 2.20.9 [ 5.357] Module class: X.Org Video Driver [ 5.357] ABI class: X.Org Video Driver, version 13.0 I will try the code tomorrow on another PC with ati-open-source-drivers Thanks, Sebastian On 22.01.2013 22:47, Bruce Sherwood wrote: > From what you describe, it is almost certainly the case that you need > to update your graphics drivers, though this should affect VPython 5 > as much as 6. What kind of graphics card do you have? > > Bruce Sherwood > > > On Tue, Jan 22, 2013 at 2:39 PM, Sebastian Schleitzer > <sch...@go... <mailto:sch...@go...>> wrote: > > Thank you very much for providing me the binaries. > > Unfortunaly, it was not compatible (I remember a libboost-x.<49 > not found, tried to make symlinks, no luck, it doesn't start) > > So I compiled wxPython and VPython6 from source. > > Now my project has some view problems and the > mouse-object-picking. The 3d modell is a kind of sphere, only > composed of cylinders, vectors: (0,0,0)-->surface of sphere > > I think I have to switch back to vpython 5 > > Best regards > Sebastian > > > On 21.01.2013 16:35, Steve Spicklemire wrote: > > Also... for what it's worth, I've build and posted .egg files > (which are easy_install'able) for Polygon, TTFQuery and > FontTools here: > > https://dl.dropbox.com/u/20562746/fonttools-2.3-py2.7-linux-x86_64.egg > > https://dl.dropbox.com/u/20562746/Polygon-2.0.5-py2.7-linux-x86_64.egg > > https://dl.dropbox.com/u/20562746/TTFQuery-1.0.5-py2.7.egg > > These are built on/for Ubuntu 12.04 x86_64. They may also work > on your 12.10 system. > > The good news about these is that they can be uninstalled > using the "pip" utility. > > Enjoy! Let me know how it goes... > > -steve > > On Jan 21, 2013, at 8:01 AM, Steve Spicklemire wrote: > > > > |
From: Steve S. <st...@sp...> - 2013-01-22 21:50:35
|
Ok! I'll give it a try. thanks, -steve On Jan 21, 2013, at 8:19 PM, "Guy K. Kloss" <guy...@au...> wrote: > Hi Steve, > > On 22/01/13 13:31, Steve Spicklemire wrote: >> That is the ultimate idea when things settle down... I was >> thinking that we needed to get some more input from testers before >> putting anything on pypi, but I've never actually released anything >> there, so I'm not certain of the exact protocol. Is it not >> expected that most of the packages there are stable releases? > > Not necessarily. You're adding "Categories" to each entry, which consist > of key-value pairs. One of these categories is "Development Status", > which you can just declare to be "Alpha" or "Beta". Here's a link of one > of my projects that's in alpha to show what I mean: > > http://pypi.python.org/pypi/matanui > >> The >> other issue is our dependency on wxPython 2.9.4. Even the wxPython >> folks don't have binary releases yet, and the package managers >> (that I've seen) are still on 2.8.x. > > That is certainly a problem for a fully automated process. However, I > think a bit of documentation on the PyPI entry goes a long way in > explaining that. However, you can put a dependency into the meta-data of > setup.py, which declares that as well. I can see that there's also a > 2.9.x wxPython in PyPI, so it can also be pip installed *automatically* > when installing wxVisual through pip. > > http://pypi.python.org/pypi/wxPython/2.9.1.1 > > Maybe that requires first installing the native 2.9.x wx widgets, but as > I said, a bit of documentation ... > >> If I'm wrong, I think it's a great idea! > > Go for it. I'd be keen to see it this way. It would open up a whole > different population of users. Additionally, the setup.py provided > meta-data can also be very useful for package maintainers of > distribution packages. Talking about distro packages: with stdeb, one > can also retrieve PyPI packages, have them automatically rolled into a > .deb package and installed, keeping the package management nice and > clean ... > > 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...> - 2013-01-22 21:48:07
|
>From what you describe, it is almost certainly the case that you need to update your graphics drivers, though this should affect VPython 5 as much as 6. What kind of graphics card do you have? Bruce Sherwood On Tue, Jan 22, 2013 at 2:39 PM, Sebastian Schleitzer < sch...@go...> wrote: > Thank you very much for providing me the binaries. > > Unfortunaly, it was not compatible (I remember a libboost-x.<49 not found, > tried to make symlinks, no luck, it doesn't start) > > So I compiled wxPython and VPython6 from source. > > Now my project has some view problems and the mouse-object-picking. The 3d > modell is a kind of sphere, only composed of cylinders, vectors: > (0,0,0)-->surface of sphere > > I think I have to switch back to vpython 5 > > Best regards > Sebastian > > > On 21.01.2013 16:35, Steve Spicklemire wrote: > >> Also... for what it's worth, I've build and posted .egg files (which are >> easy_install'able) for Polygon, TTFQuery and FontTools here: >> >> https://dl.dropbox.com/u/**20562746/fonttools-2.3-py2.7-** >> linux-x86_64.egg<https://dl.dropbox.com/u/20562746/fonttools-2.3-py2.7-linux-x86_64.egg> >> >> https://dl.dropbox.com/u/**20562746/Polygon-2.0.5-py2.7-** >> linux-x86_64.egg<https://dl.dropbox.com/u/20562746/Polygon-2.0.5-py2.7-linux-x86_64.egg> >> >> https://dl.dropbox.com/u/**20562746/TTFQuery-1.0.5-py2.7.**egg<https://dl.dropbox.com/u/20562746/TTFQuery-1.0.5-py2.7.egg> >> >> These are built on/for Ubuntu 12.04 x86_64. They may also work on your >> 12.10 system. >> >> The good news about these is that they can be uninstalled using the "pip" >> utility. >> >> Enjoy! Let me know how it goes... >> >> -steve >> >> On Jan 21, 2013, at 8:01 AM, Steve Spicklemire wrote: >> >> >> > |
From: Steve S. <st...@sp...> - 2013-01-22 21:45:05
|
I'd like to try to track down those problems with 6. Can you send me an example that exhibits the trouble? Sorry for the difficulty! I recognize that it's frustrating. thanks, -steve On Jan 22, 2013, at 2:39 PM, Sebastian Schleitzer <sch...@go...> wrote: > Thank you very much for providing me the binaries. > > Unfortunaly, it was not compatible (I remember a libboost-x.<49 not found, tried to make symlinks, no luck, it doesn't start) > > So I compiled wxPython and VPython6 from source. > > Now my project has some view problems and the mouse-object-picking. The 3d modell is a kind of sphere, only composed of cylinders, vectors: (0,0,0)-->surface of sphere > > I think I have to switch back to vpython 5 > > Best regards > Sebastian > > On 21.01.2013 16:35, Steve Spicklemire wrote: >> Also... for what it's worth, I've build and posted .egg files (which are easy_install'able) for Polygon, TTFQuery and FontTools here: >> >> https://dl.dropbox.com/u/20562746/fonttools-2.3-py2.7-linux-x86_64.egg >> >> https://dl.dropbox.com/u/20562746/Polygon-2.0.5-py2.7-linux-x86_64.egg >> >> https://dl.dropbox.com/u/20562746/TTFQuery-1.0.5-py2.7.egg >> >> These are built on/for Ubuntu 12.04 x86_64. They may also work on your 12.10 system. >> >> The good news about these is that they can be uninstalled using the "pip" utility. >> >> Enjoy! Let me know how it goes... >> >> -steve >> >> On Jan 21, 2013, at 8:01 AM, Steve Spicklemire wrote: >> >> |
From: Sebastian S. <sch...@go...> - 2013-01-22 21:40:09
|
Thank you very much for providing me the binaries. Unfortunaly, it was not compatible (I remember a libboost-x.<49 not found, tried to make symlinks, no luck, it doesn't start) So I compiled wxPython and VPython6 from source. Now my project has some view problems and the mouse-object-picking. The 3d modell is a kind of sphere, only composed of cylinders, vectors: (0,0,0)-->surface of sphere I think I have to switch back to vpython 5 Best regards Sebastian On 21.01.2013 16:35, Steve Spicklemire wrote: > Also... for what it's worth, I've build and posted .egg files (which are easy_install'able) for Polygon, TTFQuery and FontTools here: > > https://dl.dropbox.com/u/20562746/fonttools-2.3-py2.7-linux-x86_64.egg > > https://dl.dropbox.com/u/20562746/Polygon-2.0.5-py2.7-linux-x86_64.egg > > https://dl.dropbox.com/u/20562746/TTFQuery-1.0.5-py2.7.egg > > These are built on/for Ubuntu 12.04 x86_64. They may also work on your 12.10 system. > > The good news about these is that they can be uninstalled using the "pip" utility. > > Enjoy! Let me know how it goes... > > -steve > > On Jan 21, 2013, at 8:01 AM, Steve Spicklemire wrote: > > |
From: Guy K. K. <guy...@au...> - 2013-01-22 03:20:25
|
Hi Steve, On 22/01/13 13:31, Steve Spicklemire wrote: > That is the ultimate idea when things settle down... I was > thinking that we needed to get some more input from testers before > putting anything on pypi, but I've never actually released anything > there, so I'm not certain of the exact protocol. Is it not > expected that most of the packages there are stable releases? Not necessarily. You're adding "Categories" to each entry, which consist of key-value pairs. One of these categories is "Development Status", which you can just declare to be "Alpha" or "Beta". Here's a link of one of my projects that's in alpha to show what I mean: http://pypi.python.org/pypi/matanui > The > other issue is our dependency on wxPython 2.9.4. Even the wxPython > folks don't have binary releases yet, and the package managers > (that I've seen) are still on 2.8.x. That is certainly a problem for a fully automated process. However, I think a bit of documentation on the PyPI entry goes a long way in explaining that. However, you can put a dependency into the meta-data of setup.py, which declares that as well. I can see that there's also a 2.9.x wxPython in PyPI, so it can also be pip installed *automatically* when installing wxVisual through pip. http://pypi.python.org/pypi/wxPython/2.9.1.1 Maybe that requires first installing the native 2.9.x wx widgets, but as I said, a bit of documentation ... > If I'm wrong, I think it's a great idea! Go for it. I'd be keen to see it this way. It would open up a whole different population of users. Additionally, the setup.py provided meta-data can also be very useful for package maintainers of distribution packages. Talking about distro packages: with stdeb, one can also retrieve PyPI packages, have them automatically rolled into a .deb package and installed, keeping the package management nice and clean ... 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: Steve S. <st...@sp...> - 2013-01-22 00:31:18
|
Hi Guy, That is the ultimate idea when things settle down... I was thinking that we needed to get some more input from testers before putting anything on pypi, but I've never actually released anything there, so I'm not certain of the exact protocol. Is it not expected that most of the packages there are stable releases? The other issue is our dependency on wxPython 2.9.4. Even the wxPython folks don't have binary releases yet, and the package managers (that I've seen) are still on 2.8.x. If I'm wrong, I think it's a great idea! thanks, -steve On Jan 21, 2013, at 3:57 PM, Guy K. Kloss wrote: > On 22/01/13 04:35, Steve Spicklemire wrote: >> I've build and posted .egg files [...] > > [...] > >> These are built on/for Ubuntu 12.04 x86_64. They may also work on your 12.10 system. >> >> The good news about these is that they can be uninstalled using the "pip" utility. > > If you've created the setup.py with all its magic already, wouldn't it > be worth putting that up onto PyPI [http://pypi.python.org]? This way > anybody could just install it using pip without the need to download, > etc. You can also have custom build/compile steps in the setup.py, so > that the C/C++ parts can be compiled on the target machine upon install > via pip. The PyMongo project for example has this solved really nicely, > where the pip install works smoothly, and even defaults back to a pure > Python driver in case build tools (GCC, etc.) are not available. > Obviously that fallback won't be an option here, but the pip install > magic via PyPI would step VisualPython up another notch. > > 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... > > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > MVPs and experts. SALE $99.99 this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122412_______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Guy K. K. <guy...@au...> - 2013-01-21 22:58:22
|
On 22/01/13 04:35, Steve Spicklemire wrote: > I've build and posted .egg files [...] [...] > These are built on/for Ubuntu 12.04 x86_64. They may also work on your 12.10 system. > > The good news about these is that they can be uninstalled using the "pip" utility. If you've created the setup.py with all its magic already, wouldn't it be worth putting that up onto PyPI [http://pypi.python.org]? This way anybody could just install it using pip without the need to download, etc. You can also have custom build/compile steps in the setup.py, so that the C/C++ parts can be compiled on the target machine upon install via pip. The PyMongo project for example has this solved really nicely, where the pip install works smoothly, and even defaults back to a pure Python driver in case build tools (GCC, etc.) are not available. Obviously that fallback won't be an option here, but the pip install magic via PyPI would step VisualPython up another notch. 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: Mark J. <dre...@gm...> - 2013-01-21 20:30:04
|
http://spo-edmusicstudio.com/wp-content/themes/template/yahoolink.php |
From: John Z. <joh...@wa...> - 2013-01-21 15:50:12
|
Hi All, I love all the work going on in the Wx version of VPython. I can't wait until I have some time to try it out. Just for the record, I want to point out that Sebastian's test program runs fine (no seg fault) on my 64 bit Ubuntu 12.04 that just uses the standard Ubuntu python-visual package (with the libgl-mea fix reported on the VPython download page). I am wondering if the downgrade of the libgl might also fix the problem on 12.10, but I have not yet had a chance to try it, as all my machines are on 12.04 at the moment. --John ps. Thanks Bruce and Steve for the rapid progress on the new VPython. This should be a real boon for the VPython community. John Zelle, PhD Professor of Computer Science Wartburg College ________________________________________ From: Steve Spicklemire [st...@sp...] Sent: Monday, January 21, 2013 9:01 AM To: Sebastian Schleitzer Cc: Bru...@nc...; vis...@li... Subject: Re: [Visualpython-users] Seg Fault if using control-field and a box in a scene Hi Sebastian, First.. everything below assumes you're working with Python-2.7. We have also experienced trouble on Ubuntu 12.10. If you don't want to build the experimental vpython-wx from source I've built a linux .egg file and posted it here: https://dl.dropbox.com/u/20562746/VPython-6.01-py2.7-linux-x86_64.egg You can install it using the setuptools "easy_install" command line program: sudo easy_install https://dl.dropbox.com/u/20562746/VPython-6.01-py2.7-linux-x86_64.egg The good news is that this will get you the latest experimental version of visual python, (which I've tested with your program on Ubuntu 12.04 anyway, and it appears not to crash) without having to build from source. The bad news is that it depends on having wxPython 2.9.4 installed, and that probably requires building from source (see INSTALL.txt here for instructions <https://github.com/BruceSherwood/vpython-wx/blob/master/INSTALL.txt skip the part about building vpython, and go straight to the wxPython part.) In case that's not possible, I've also posted a tarball of my wxPython libraries but there's no guarantee they will work on your system: https://dl.dropbox.com/u/20562746/wxPython-2.9.4-linux_ull.tgz You can install them manually if you like: sudo tar -C / -xzvf wxPython-2.9.4-linux_ull.tgz Of course you'll still need Polygon, TTFQuery and FontTools installed for text, etc. I'm guessing you have those around from the older vpython? Realize that this all circumvents your package manager and may have to be undone manually if you decide you want to "go back". If you decide to try this.. please let us know how it comes out! Sorry it's not simpler... we're working on that! thanks, -steve On Jan 21, 2013, at 1:35 AM, Sebastian Schleitzer wrote: > The building process of vpython was successfull. Also my project was running without problems. The only problem was the control window and the box in the second scene. > If i comment the box-create line and uncomment the controls it works. > If i uncomment the the box and comment the controls line it also works. > Both lines uncomment - seg fault. > (The code is only an excerpt of my project) > > Thank you for your patience and sorry for my bad english > Sebastian > > (vom Handy gesendet) > > Am 21.01.2013 05:00 schrieb "Steve Spicklemire" <st...@sp...>: > I'll try to modify the setuptools script to work on visual 5.7x and post if I can get it to work. That may permit you to build a fresh version in your environment. > > thanks, > -steve > > On Jan 20, 2013, at 5:07 PM, Bruce Sherwood <Bru...@nc...> wrote: > >> I too find that recent versions of Ubuntu offer non-working versions of the package python-visual, and I don't know why building a new version also fails. Steve Spicklemire has been doing excellent work in making an easy to use Linux installer for the new wxPython-based VPython, which is quickly getting quite mature. Perhaps Steve can post something about the status of his installer. >> >> Bruce Sherwood >> >> >> On Sun, Jan 20, 2013 at 2:00 PM, Sebastian Schleitzer <sch...@go...> wrote: >> Hello, >> I'm new in Vpython. I have designed a 3D modell in vpython to interact with them. The mathematics, displaying the 3D modell - all fine. >> >> After this I wanted to make a controls-field with buttons and I always get a segfault. After some hours I have compiled the newest vpython version 5.74 (+modules) and still the same problem. >> >> Thank you for your help, >> Best Regards, Sebastian Schleitzer >> >> segfault: >> Jan 20 21:35:11 seb-t61 kernel: [436645.683645] python[7636]: segfault at 8 ip 00007fd656ef0afa sp 00007fd65d8a2d50 error 4 in libdricore9.0.0.so.1.0.0[7fd656d93000+373000] >> Ubuntu 12.10 >> >> ### Code: >> from visual import * >> from visual.text import * >> from visual.controls import * >> cmd_feld = controls(title='Controlling the Scene',x=700, y=600, width=400, height=400, range=50) >> but_net = button( pos=(0,0), width=60, height=60,text='N', action=lambda: pause() ) >> >> scene = display(title='Scene Test',x=0, y=0, width=700, height=600,center=(10,0,0)) >> sphere() >> >> color_scene = display(title='Controls',x=700, y=0, width=200, height=600) >> color_scene.select() >> box(pos=(-1,-20,0), length=24, height=5, width=5, color=color.white) >> >> >> ------------------------------------------------------------------------------ >> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, >> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current >> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft >> MVPs and experts. ON SALE this month only -- learn more at: >> http://p.sf.net/sfu/learnmore_123012 >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> >> ------------------------------------------------------------------------------ Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only -- learn more at: http://p.sf.net/sfu/learnmore_122412 _______________________________________________ Visualpython-users mailing list Vis...@li... https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Steve S. <st...@sp...> - 2013-01-21 15:35:44
|
Also... for what it's worth, I've build and posted .egg files (which are easy_install'able) for Polygon, TTFQuery and FontTools here: https://dl.dropbox.com/u/20562746/fonttools-2.3-py2.7-linux-x86_64.egg https://dl.dropbox.com/u/20562746/Polygon-2.0.5-py2.7-linux-x86_64.egg https://dl.dropbox.com/u/20562746/TTFQuery-1.0.5-py2.7.egg These are built on/for Ubuntu 12.04 x86_64. They may also work on your 12.10 system. The good news about these is that they can be uninstalled using the "pip" utility. Enjoy! Let me know how it goes... -steve On Jan 21, 2013, at 8:01 AM, Steve Spicklemire wrote: > Hi Sebastian, > > First.. everything below assumes you're working with Python-2.7. > > We have also experienced trouble on Ubuntu 12.10. If you don't want to build the experimental vpython-wx from source I've built a linux .egg file and posted it here: https://dl.dropbox.com/u/20562746/VPython-6.01-py2.7-linux-x86_64.egg > > You can install it using the setuptools "easy_install" command line program: > > sudo easy_install https://dl.dropbox.com/u/20562746/VPython-6.01-py2.7-linux-x86_64.egg > > The good news is that this will get you the latest experimental version of visual python, (which I've tested with your program on Ubuntu 12.04 anyway, and it appears not to crash) without having to build from source. > > The bad news is that it depends on having wxPython 2.9.4 installed, and that probably requires building from source (see INSTALL.txt here for instructions <https://github.com/BruceSherwood/vpython-wx/blob/master/INSTALL.txt skip the part about building vpython, and go straight to the wxPython part.) > > In case that's not possible, I've also posted a tarball of my wxPython libraries but there's no guarantee they will work on your system: > > https://dl.dropbox.com/u/20562746/wxPython-2.9.4-linux_ull.tgz > > You can install them manually if you like: > > sudo tar -C / -xzvf wxPython-2.9.4-linux_ull.tgz > > Of course you'll still need Polygon, TTFQuery and FontTools installed for text, etc. I'm guessing you have those around from the older vpython? > > Realize that this all circumvents your package manager and may have to be undone manually if you decide you want to "go back". > > If you decide to try this.. please let us know how it comes out! Sorry it's not simpler... we're working on that! > > thanks, > -steve > > On Jan 21, 2013, at 1:35 AM, Sebastian Schleitzer wrote: > >> The building process of vpython was successfull. Also my project was running without problems. The only problem was the control window and the box in the second scene. >> If i comment the box-create line and uncomment the controls it works. >> If i uncomment the the box and comment the controls line it also works. >> Both lines uncomment - seg fault. >> (The code is only an excerpt of my project) >> >> Thank you for your patience and sorry for my bad english >> Sebastian >> >> (vom Handy gesendet) >> >> Am 21.01.2013 05:00 schrieb "Steve Spicklemire" <st...@sp...>: >> I'll try to modify the setuptools script to work on visual 5.7x and post if I can get it to work. That may permit you to build a fresh version in your environment. >> >> thanks, >> -steve >> >> On Jan 20, 2013, at 5:07 PM, Bruce Sherwood <Bru...@nc...> wrote: >> >>> I too find that recent versions of Ubuntu offer non-working versions of the package python-visual, and I don't know why building a new version also fails. Steve Spicklemire has been doing excellent work in making an easy to use Linux installer for the new wxPython-based VPython, which is quickly getting quite mature. Perhaps Steve can post something about the status of his installer. >>> >>> Bruce Sherwood >>> >>> >>> On Sun, Jan 20, 2013 at 2:00 PM, Sebastian Schleitzer <sch...@go...> wrote: >>> Hello, >>> I'm new in Vpython. I have designed a 3D modell in vpython to interact with them. The mathematics, displaying the 3D modell - all fine. >>> >>> After this I wanted to make a controls-field with buttons and I always get a segfault. After some hours I have compiled the newest vpython version 5.74 (+modules) and still the same problem. >>> >>> Thank you for your help, >>> Best Regards, Sebastian Schleitzer >>> >>> segfault: >>> Jan 20 21:35:11 seb-t61 kernel: [436645.683645] python[7636]: segfault at 8 ip 00007fd656ef0afa sp 00007fd65d8a2d50 error 4 in libdricore9.0.0.so.1.0.0[7fd656d93000+373000] >>> Ubuntu 12.10 >>> >>> ### Code: >>> from visual import * >>> from visual.text import * >>> from visual.controls import * >>> cmd_feld = controls(title='Controlling the Scene',x=700, y=600, width=400, height=400, range=50) >>> but_net = button( pos=(0,0), width=60, height=60,text='N', action=lambda: pause() ) >>> >>> scene = display(title='Scene Test',x=0, y=0, width=700, height=600,center=(10,0,0)) >>> sphere() >>> >>> color_scene = display(title='Controls',x=700, y=0, width=200, height=600) >>> color_scene.select() >>> box(pos=(-1,-20,0), length=24, height=5, width=5, color=color.white) >>> >>> >>> ------------------------------------------------------------------------------ >>> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, >>> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current >>> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft >>> MVPs and experts. ON SALE this month only -- learn more at: >>> http://p.sf.net/sfu/learnmore_123012 >>> _______________________________________________ >>> Visualpython-users mailing list >>> Vis...@li... >>> https://lists.sourceforge.net/lists/listinfo/visualpython-users >>> >>> > |
From: Steve S. <st...@sp...> - 2013-01-21 15:02:13
|
Hi Sebastian, First.. everything below assumes you're working with Python-2.7. We have also experienced trouble on Ubuntu 12.10. If you don't want to build the experimental vpython-wx from source I've built a linux .egg file and posted it here: https://dl.dropbox.com/u/20562746/VPython-6.01-py2.7-linux-x86_64.egg You can install it using the setuptools "easy_install" command line program: sudo easy_install https://dl.dropbox.com/u/20562746/VPython-6.01-py2.7-linux-x86_64.egg The good news is that this will get you the latest experimental version of visual python, (which I've tested with your program on Ubuntu 12.04 anyway, and it appears not to crash) without having to build from source. The bad news is that it depends on having wxPython 2.9.4 installed, and that probably requires building from source (see INSTALL.txt here for instructions <https://github.com/BruceSherwood/vpython-wx/blob/master/INSTALL.txt skip the part about building vpython, and go straight to the wxPython part.) In case that's not possible, I've also posted a tarball of my wxPython libraries but there's no guarantee they will work on your system: https://dl.dropbox.com/u/20562746/wxPython-2.9.4-linux_ull.tgz You can install them manually if you like: sudo tar -C / -xzvf wxPython-2.9.4-linux_ull.tgz Of course you'll still need Polygon, TTFQuery and FontTools installed for text, etc. I'm guessing you have those around from the older vpython? Realize that this all circumvents your package manager and may have to be undone manually if you decide you want to "go back". If you decide to try this.. please let us know how it comes out! Sorry it's not simpler... we're working on that! thanks, -steve On Jan 21, 2013, at 1:35 AM, Sebastian Schleitzer wrote: > The building process of vpython was successfull. Also my project was running without problems. The only problem was the control window and the box in the second scene. > If i comment the box-create line and uncomment the controls it works. > If i uncomment the the box and comment the controls line it also works. > Both lines uncomment - seg fault. > (The code is only an excerpt of my project) > > Thank you for your patience and sorry for my bad english > Sebastian > > (vom Handy gesendet) > > Am 21.01.2013 05:00 schrieb "Steve Spicklemire" <st...@sp...>: > I'll try to modify the setuptools script to work on visual 5.7x and post if I can get it to work. That may permit you to build a fresh version in your environment. > > thanks, > -steve > > On Jan 20, 2013, at 5:07 PM, Bruce Sherwood <Bru...@nc...> wrote: > >> I too find that recent versions of Ubuntu offer non-working versions of the package python-visual, and I don't know why building a new version also fails. Steve Spicklemire has been doing excellent work in making an easy to use Linux installer for the new wxPython-based VPython, which is quickly getting quite mature. Perhaps Steve can post something about the status of his installer. >> >> Bruce Sherwood >> >> >> On Sun, Jan 20, 2013 at 2:00 PM, Sebastian Schleitzer <sch...@go...> wrote: >> Hello, >> I'm new in Vpython. I have designed a 3D modell in vpython to interact with them. The mathematics, displaying the 3D modell - all fine. >> >> After this I wanted to make a controls-field with buttons and I always get a segfault. After some hours I have compiled the newest vpython version 5.74 (+modules) and still the same problem. >> >> Thank you for your help, >> Best Regards, Sebastian Schleitzer >> >> segfault: >> Jan 20 21:35:11 seb-t61 kernel: [436645.683645] python[7636]: segfault at 8 ip 00007fd656ef0afa sp 00007fd65d8a2d50 error 4 in libdricore9.0.0.so.1.0.0[7fd656d93000+373000] >> Ubuntu 12.10 >> >> ### Code: >> from visual import * >> from visual.text import * >> from visual.controls import * >> cmd_feld = controls(title='Controlling the Scene',x=700, y=600, width=400, height=400, range=50) >> but_net = button( pos=(0,0), width=60, height=60,text='N', action=lambda: pause() ) >> >> scene = display(title='Scene Test',x=0, y=0, width=700, height=600,center=(10,0,0)) >> sphere() >> >> color_scene = display(title='Controls',x=700, y=0, width=200, height=600) >> color_scene.select() >> box(pos=(-1,-20,0), length=24, height=5, width=5, color=color.white) >> >> >> ------------------------------------------------------------------------------ >> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, >> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current >> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft >> MVPs and experts. ON SALE this month only -- learn more at: >> http://p.sf.net/sfu/learnmore_123012 >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> >> |
From: Sebastian S. <sch...@go...> - 2013-01-21 08:35:36
|
The building process of vpython was successfull. Also my project was running without problems. The only problem was the control window and the box in the second scene. If i comment the box-create line and uncomment the controls it works. If i uncomment the the box and comment the controls line it also works. Both lines uncomment - seg fault. (The code is only an excerpt of my project) Thank you for your patience and sorry for my bad english Sebastian (vom Handy gesendet) Am 21.01.2013 05:00 schrieb "Steve Spicklemire" <st...@sp...>: > I'll try to modify the setuptools script to work on visual 5.7x and post > if I can get it to work. That may permit you to build a fresh version in > your environment. > > thanks, > -steve > > On Jan 20, 2013, at 5:07 PM, Bruce Sherwood <Bru...@nc...> > wrote: > > I too find that recent versions of Ubuntu offer non-working versions of > the package python-visual, and I don't know why building a new version also > fails. Steve Spicklemire has been doing excellent work in making an easy to > use Linux installer for the new wxPython-based VPython, which is quickly > getting quite mature. Perhaps Steve can post something about the status of > his installer. > > Bruce Sherwood > > > On Sun, Jan 20, 2013 at 2:00 PM, Sebastian Schleitzer < > sch...@go...> wrote: > >> Hello, >> I'm new in Vpython. I have designed a 3D modell in vpython to interact >> with them. The mathematics, displaying the 3D modell - all fine. >> >> After this I wanted to make a controls-field with buttons and I always >> get a segfault. After some hours I have compiled the newest vpython version >> 5.74 (+modules) and still the same problem. >> >> Thank you for your help, >> Best Regards, Sebastian Schleitzer >> >> segfault: >> Jan 20 21:35:11 seb-t61 kernel: [436645.683645] python[7636]: segfault at >> 8 ip 00007fd656ef0afa sp 00007fd65d8a2d50 error 4 in >> libdricore9.0.0.so.1.0.0[7fd656d93000+373000] >> Ubuntu 12.10 >> >> ### Code: >> from visual import * >> from visual.text import * >> from visual.controls import * >> cmd_feld = controls(title='Controlling the Scene',x=700, y=600, >> width=400, height=400, range=50) >> but_net = button( pos=(0,0), width=60, height=60,text='N', action=lambda: >> pause() ) >> >> scene = display(title='Scene Test',x=0, y=0, width=700, >> height=600,center=(10,0,0)) >> sphere() >> >> color_scene = display(title='Controls',x=700, y=0, width=200, height=600) >> color_scene.select() >> box(pos=(-1,-20,0), length=24, height=5, width=5, color=color.white) >> >> >> >> ------------------------------------------------------------------------------ >> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, >> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current >> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft >> MVPs and experts. ON SALE this month only -- learn more at: >> http://p.sf.net/sfu/learnmore_123012 >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> >> > |
From: Steve S. <st...@sp...> - 2013-01-21 04:00:15
|
I'll try to modify the setuptools script to work on visual 5.7x and post if I can get it to work. That may permit you to build a fresh version in your environment. thanks, -steve On Jan 20, 2013, at 5:07 PM, Bruce Sherwood <Bru...@nc...> wrote: > I too find that recent versions of Ubuntu offer non-working versions of the package python-visual, and I don't know why building a new version also fails. Steve Spicklemire has been doing excellent work in making an easy to use Linux installer for the new wxPython-based VPython, which is quickly getting quite mature. Perhaps Steve can post something about the status of his installer. > > Bruce Sherwood > > > On Sun, Jan 20, 2013 at 2:00 PM, Sebastian Schleitzer <sch...@go...> wrote: >> Hello, >> I'm new in Vpython. I have designed a 3D modell in vpython to interact with them. The mathematics, displaying the 3D modell - all fine. >> >> After this I wanted to make a controls-field with buttons and I always get a segfault. After some hours I have compiled the newest vpython version 5.74 (+modules) and still the same problem. >> >> Thank you for your help, >> Best Regards, Sebastian Schleitzer >> >> segfault: >> Jan 20 21:35:11 seb-t61 kernel: [436645.683645] python[7636]: segfault at 8 ip 00007fd656ef0afa sp 00007fd65d8a2d50 error 4 in libdricore9.0.0.so.1.0.0[7fd656d93000+373000] >> Ubuntu 12.10 >> >> ### Code: >> from visual import * >> from visual.text import * >> from visual.controls import * >> cmd_feld = controls(title='Controlling the Scene',x=700, y=600, width=400, height=400, range=50) >> but_net = button( pos=(0,0), width=60, height=60,text='N', action=lambda: pause() ) >> >> scene = display(title='Scene Test',x=0, y=0, width=700, height=600,center=(10,0,0)) >> sphere() >> >> color_scene = display(title='Controls',x=700, y=0, width=200, height=600) >> color_scene.select() >> box(pos=(-1,-20,0), length=24, height=5, width=5, color=color.white) >> >> >> ------------------------------------------------------------------------------ >> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, >> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current >> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft >> MVPs and experts. ON SALE this month only -- learn more at: >> http://p.sf.net/sfu/learnmore_123012 >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Bruce S. <Bru...@nc...> - 2013-01-21 00:07:13
|
I too find that recent versions of Ubuntu offer non-working versions of the package python-visual, and I don't know why building a new version also fails. Steve Spicklemire has been doing excellent work in making an easy to use Linux installer for the new wxPython-based VPython, which is quickly getting quite mature. Perhaps Steve can post something about the status of his installer. Bruce Sherwood On Sun, Jan 20, 2013 at 2:00 PM, Sebastian Schleitzer < sch...@go...> wrote: > Hello, > I'm new in Vpython. I have designed a 3D modell in vpython to interact > with them. The mathematics, displaying the 3D modell - all fine. > > After this I wanted to make a controls-field with buttons and I always get > a segfault. After some hours I have compiled the newest vpython version > 5.74 (+modules) and still the same problem. > > Thank you for your help, > Best Regards, Sebastian Schleitzer > > segfault: > Jan 20 21:35:11 seb-t61 kernel: [436645.683645] python[7636]: segfault at > 8 ip 00007fd656ef0afa sp 00007fd65d8a2d50 error 4 in > libdricore9.0.0.so.1.0.0[7fd656d93000+373000] > Ubuntu 12.10 > > ### Code: > from visual import * > from visual.text import * > from visual.controls import * > cmd_feld = controls(title='Controlling the Scene',x=700, y=600, width=400, > height=400, range=50) > but_net = button( pos=(0,0), width=60, height=60,text='N', action=lambda: > pause() ) > > scene = display(title='Scene Test',x=0, y=0, width=700, > height=600,center=(10,0,0)) > sphere() > > color_scene = display(title='Controls',x=700, y=0, width=200, height=600) > color_scene.select() > box(pos=(-1,-20,0), length=24, height=5, width=5, color=color.white) > > > > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > MVPs and experts. ON SALE this month only -- learn more at: > http://p.sf.net/sfu/learnmore_123012 > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > |
From: Sebastian S. <sch...@go...> - 2013-01-20 21:00:23
|
Hello, I'm new in Vpython. I have designed a 3D modell in vpython to interact with them. The mathematics, displaying the 3D modell - all fine. After this I wanted to make a controls-field with buttons and I always get a segfault. After some hours I have compiled the newest vpython version 5.74 (+modules) and still the same problem. Thank you for your help, Best Regards, Sebastian Schleitzer segfault: Jan 20 21:35:11 seb-t61 kernel: [436645.683645] python[7636]: segfault at 8 ip 00007fd656ef0afa sp 00007fd65d8a2d50 error 4 in libdricore9.0.0.so.1.0.0[7fd656d93000+373000] Ubuntu 12.10 ### Code: from visual import * from visual.text import * from visual.controls import * cmd_feld = controls(title='Controlling the Scene',x=700, y=600, width=400, height=400, range=50) but_net = button( pos=(0,0), width=60, height=60,text='N', action=lambda: pause() ) scene = display(title='Scene Test',x=0, y=0, width=700, height=600,center=(10,0,0)) sphere() color_scene = display(title='Controls',x=700, y=0, width=200, height=600) color_scene.select() box(pos=(-1,-20,0), length=24, height=5, width=5, color=color.white) |
From: Bruce S. <Bru...@nc...> - 2013-01-17 22:54:51
|
Steve Spicklemire figured out a much simpler scheme for VPython-wx which eliminates the strange "double import" structure I had created, in which you import visual, and visual imports you. Instead, he uses the "atexit" module to define a function to be called at the end of a Python program. That end-of-program function enters and endless while loop containing rate(30), which keeps the graphics window alive for zoom and spin. There is no double import. Many thanks, Steve! Bruce Sherwood |
From: Bruce S. <Bru...@nc...> - 2013-01-15 19:25:26
|
>From INSTALL.txt: You need wxPython (wxpython.org). Currently one needs version 2.9, but on Linux you need to apply a patch. Here is information about the patch: https://groups.google.com/forum/?fromgroups=#!topic/wxpython-users/e27JioMs1fs In this forum post is a link to the patch, located at http://sourceforge.net/projects/wxpython/files/wxPython/2.9.4.0/wxPython-src-2.9.4.1.patch/download Place the patch file in the wxPython directory, cd to that directory, and execute this in a terminal: patch -p0 < wxPython-src-2.9.4.1.patch Next cd wxPython (within the wxPython package) and execute sudo python2.7 build-wxpython.py --build_dir=../bld --install On Tue, Jan 15, 2013 at 11:10 AM, Paul Camp <PC...@sp...> wrote: > Apparently, that has to be built from source as 2.9.x is not in the > repositories. I can do that, but I get an error message that GStreamer is > not found. However, according to my package manager, GStreamer is installed > on the system. > > > 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: Steve Spicklemire <st...@sp...> > To: Paul Camp <PC...@sp...> > Cc: vpusers <vis...@li...> > Date: 01/14/2013 07:45 PM > Subject: Re: [Visualpython-users] How VPython 6 differs from > VPython 5 > ------------------------------ > > > > The source you need is wxPython-2.9.4.0 not 2.8. Sorry. > > to apply the patch go to the wxPython-src-2.9.4.0 directory (not the > wxPython directory that it contains) and type: > > patch -p0 < path/to/the/patch/file > > Let us know if that works! > -steve > > On Jan 14, 2013, at 5:25 PM, Paul Camp wrote: > > > Trying to follow the instructions in INSTALL.txt. I get up to the patch > and when I try to execute that, I get the following error message: > > > > can't find file to patch at input line 5 > > Perhaps you used the wrong -p or --strip option? > > The text leading up to this was: > > -------------------------------------------------- > > Index:configure > > ============================================= > > - - - configure (revision 72192) > > + + + configure (working copy) > > --------------------------------------------------- > > > > Its certainly plausible that I'm located in the wrong directory. The > instruction "place the file in the wxPython directory" is a little > inscrutable since I didn't know off the bat exactly where that is. However, > /usr/include/wx-2.8 certainly seems to contain all the relevant files > addressed by the patch. What am I missing? > > > > > > 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 Sherwood <Bru...@nc...> > > To: C Anthony Risinger <an...@xt...> > > Cc: vpusers <vis...@li...> > > Date: 01/13/2013 10:42 AM > > Subject: Re: [Visualpython-users] How VPython 6 differs from > VPython 5 > > > > > > > > Thanks for pointing out the outdated reference. Here is where the source > code is: > > > > https://github.com/BruceSherwood/vpython-wx > > > > Steve Spicklemire is doing terrific work on simplifying building on all > platforms, including Linux. For the moment, read the file INSTALL.txt. We > have no Linux "target", but as it happens Steve and I have been doing our > testing on Ubuntu. Don't hesitate to ask for clarification if you run into > difficulties. > > > > Bruce Sherwood > > > > > > On Sun, Jan 13, 2013 at 3:36 AM, C Anthony Risinger <an...@xt...> > wrote: > > On Sun, Jan 13, 2013 at 1:15 AM, Bruce Sherwood <Bru...@nc...> > wrote: > > > Here is detailed information on how VPython 6 differs from VPython 5, > which > > > will be incorporated in the Help for upcoming releases of VPython 6. > > > > the website directs me to https://github.com/vpython/visual/ but this > > repository has not been updated since August, and no other branches > > exist. > > > > where is the development for VPython 6 happening? > > > > ...i would like to get a Linux build running for an in-house demo this > > Thursday, so any notes appreciated. note: i don't need a full-blown > > installable pip package or anything, just the code and any pertinent > > info related to the build :) > > > > for what it's worth, this is fantastic work! i've been "patiently" > > anticipating a Linux package, but i've no problem at all handling that > > part myself (im on Arch anyway... i expect Ubuntu or something is the > > focused target) > > > > thanks! > > > > -- > > > > C Anthony > > > ------------------------------------------------------------------------------ > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > > MVPs and experts. ON SALE this month only -- learn more at: > > > http://p.sf.net/sfu/learnmore_123012_______________________________________________ > > Visualpython-users mailing list > > Vis...@li... > > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > > > ------------------------------------------------------------------------------ > > Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS > > and more. Get SQL Server skills now (including 2012) with LearnDevNow - > > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > > SALE $99.99 this month only - learn more at: > > > http://p.sf.net/sfu/learnmore_122512_______________________________________________ > > Visualpython-users mailing list > > Vis...@li... > > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > > ------------------------------------------------------------------------------ > Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS > and more. Get SQL Server skills now (including 2012) with LearnDevNow - > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only - learn more at: > http://p.sf.net/sfu/learnmore_122512 > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > > ------------------------------------------------------------------------------ > Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS > and more. Get SQL Server skills now (including 2012) with LearnDevNow - > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only - learn more at: > http://p.sf.net/sfu/learnmore_122512 > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > |
From: Steve S. <st...@sp...> - 2013-01-15 18:27:32
|
FYI, there is a script in src/gtk2 that will try to pull all the needed packages for Debian and/or Ubuntu. thanks, -steve On Jan 15, 2013, at 11:10 AM, Paul Camp <PC...@sp...> wrote: > Apparently, that has to be built from source as 2.9.x is not in the repositories. I can do that, but I get an error message that GStreamer is not found. However, according to my package manager, GStreamer is installed on the system. > > > 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: Steve Spicklemire <st...@sp...> > To: Paul Camp <PC...@sp...> > Cc: vpusers <vis...@li...> > Date: 01/14/2013 07:45 PM > Subject: Re: [Visualpython-users] How VPython 6 differs from VPython 5 > > > > The source you need is wxPython-2.9.4.0 not 2.8. Sorry. > > to apply the patch go to the wxPython-src-2.9.4.0 directory (not the wxPython directory that it contains) and type: > > patch -p0 < path/to/the/patch/file > > Let us know if that works! > -steve > > On Jan 14, 2013, at 5:25 PM, Paul Camp wrote: > > > Trying to follow the instructions in INSTALL.txt. I get up to the patch and when I try to execute that, I get the following error message: > > > > can't find file to patch at input line 5 > > Perhaps you used the wrong -p or --strip option? > > The text leading up to this was: > > -------------------------------------------------- > > Index:configure > > ============================================= > > - - - configure (revision 72192) > > + + + configure (working copy) > > --------------------------------------------------- > > > > Its certainly plausible that I'm located in the wrong directory. The instruction "place the file in the wxPython directory" is a little inscrutable since I didn't know off the bat exactly where that is. However, /usr/include/wx-2.8 certainly seems to contain all the relevant files addressed by the patch. What am I missing? > > > > > > 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 Sherwood <Bru...@nc...> > > To: C Anthony Risinger <an...@xt...> > > Cc: vpusers <vis...@li...> > > Date: 01/13/2013 10:42 AM > > Subject: Re: [Visualpython-users] How VPython 6 differs from VPython 5 > > > > > > > > Thanks for pointing out the outdated reference. Here is where the source code is: > > > > https://github.com/BruceSherwood/vpython-wx > > > > Steve Spicklemire is doing terrific work on simplifying building on all platforms, including Linux. For the moment, read the file INSTALL.txt. We have no Linux "target", but as it happens Steve and I have been doing our testing on Ubuntu. Don't hesitate to ask for clarification if you run into difficulties. > > > > Bruce Sherwood > > > > > > On Sun, Jan 13, 2013 at 3:36 AM, C Anthony Risinger <an...@xt...> wrote: > > On Sun, Jan 13, 2013 at 1:15 AM, Bruce Sherwood <Bru...@nc...> wrote: > > > Here is detailed information on how VPython 6 differs from VPython 5, which > > > will be incorporated in the Help for upcoming releases of VPython 6. > > > > the website directs me to https://github.com/vpython/visual/ but this > > repository has not been updated since August, and no other branches > > exist. > > > > where is the development for VPython 6 happening? > > > > ...i would like to get a Linux build running for an in-house demo this > > Thursday, so any notes appreciated. note: i don't need a full-blown > > installable pip package or anything, just the code and any pertinent > > info related to the build :) > > > > for what it's worth, this is fantastic work! i've been "patiently" > > anticipating a Linux package, but i've no problem at all handling that > > part myself (im on Arch anyway... i expect Ubuntu or something is the > > focused target) > > > > thanks! > > > > -- > > > > C Anthony > > ------------------------------------------------------------------------------ > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > > MVPs and experts. ON SALE this month only -- learn more at: > > http://p.sf.net/sfu/learnmore_123012_______________________________________________ > > Visualpython-users mailing list > > Vis...@li... > > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > > ------------------------------------------------------------------------------ > > Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS > > and more. Get SQL Server skills now (including 2012) with LearnDevNow - > > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > > SALE $99.99 this month only - learn more at: > > http://p.sf.net/sfu/learnmore_122512_______________________________________________ > > Visualpython-users mailing list > > Vis...@li... > > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > ------------------------------------------------------------------------------ > Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS > and more. Get SQL Server skills now (including 2012) with LearnDevNow - > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only - learn more at: > http://p.sf.net/sfu/learnmore_122512 > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: C A. R. <an...@xt...> - 2013-01-15 18:19:48
|
On Tue, Jan 15, 2013 at 12:15 PM, C Anthony Risinger <an...@xt...> wrote: > On Tue, Jan 15, 2013 at 12:10 PM, Paul Camp <PC...@sp...> wrote: >> Apparently, that has to be built from source as 2.9.x is not in the >> repositories. I can do that, but I get an error message that GStreamer is >> not found. However, according to my package manager, GStreamer is installed >> on the system. > > you probably just need the build deps, eg. header files and whatnot > usually included in *-dev packages. try: > > apt-get build-dep <whatever-the-wx-widgets-package-is> > > ...that usually gets you 95% on the way, with the occasional rebuild > of a specific dep (eg, you need a newer version of a dep than whats in > the repos) also, it's usually pretty simple IMO to pull down the src packages, say for wx-widgets, and bump the versions, instead of installing right from source. i havent actually used debian/ubuntu regularly in quite some time, but i think: apt-get source <package> ...was part of the process... debian has like fifty billion helper commands; im pretty sure the whole rebuild process was only 3-5 commands. -- C Anthony |
From: C A. R. <an...@xt...> - 2013-01-15 18:15:39
|
On Tue, Jan 15, 2013 at 12:10 PM, Paul Camp <PC...@sp...> wrote: > Apparently, that has to be built from source as 2.9.x is not in the > repositories. I can do that, but I get an error message that GStreamer is > not found. However, according to my package manager, GStreamer is installed > on the system. you probably just need the build deps, eg. header files and whatnot usually included in *-dev packages. try: apt-get build-dep <whatever-the-wx-widgets-package-is> ...that usually gets you 95% on the way, with the occasional rebuild of a specific dep (eg, you need a newer version of a dep than whats in the repos) -- C Anthony |
From: Paul C. <PC...@sp...> - 2013-01-15 18:10:26
|
Apparently, that has to be built from source as 2.9.x is not in the repositories. I can do that, but I get an error message that GStreamer is not found. However, according to my package manager, GStreamer is installed on the system. 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: Steve Spicklemire <st...@sp...> To: Paul Camp <PC...@sp...> Cc: vpusers <vis...@li...> Date: 01/14/2013 07:45 PM Subject: Re: [Visualpython-users] How VPython 6 differs from VPython 5 The source you need is wxPython-2.9.4.0 not 2.8. Sorry. to apply the patch go to the wxPython-src-2.9.4.0 directory (not the wxPython directory that it contains) and type: patch -p0 < path/to/the/patch/file Let us know if that works! -steve On Jan 14, 2013, at 5:25 PM, Paul Camp wrote: > Trying to follow the instructions in INSTALL.txt. I get up to the patch and when I try to execute that, I get the following error message: > > can't find file to patch at input line 5 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > -------------------------------------------------- > Index:configure > ============================================= > - - - configure (revision 72192) > + + + configure (working copy) > --------------------------------------------------- > > Its certainly plausible that I'm located in the wrong directory. The instruction "place the file in the wxPython directory" is a little inscrutable since I didn't know off the bat exactly where that is. However, /usr/include/wx-2.8 certainly seems to contain all the relevant files addressed by the patch. What am I missing? > > > 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 Sherwood <Bru...@nc...> > To: C Anthony Risinger <an...@xt...> > Cc: vpusers <vis...@li...> > Date: 01/13/2013 10:42 AM > Subject: Re: [Visualpython-users] How VPython 6 differs from VPython 5 > > > > Thanks for pointing out the outdated reference. Here is where the source code is: > > https://github.com/BruceSherwood/vpython-wx > > Steve Spicklemire is doing terrific work on simplifying building on all platforms, including Linux. For the moment, read the file INSTALL.txt. We have no Linux "target", but as it happens Steve and I have been doing our testing on Ubuntu. Don't hesitate to ask for clarification if you run into difficulties. > > Bruce Sherwood > > > On Sun, Jan 13, 2013 at 3:36 AM, C Anthony Risinger <an...@xt...> wrote: > On Sun, Jan 13, 2013 at 1:15 AM, Bruce Sherwood <Bru...@nc...> wrote: > > Here is detailed information on how VPython 6 differs from VPython 5, which > > will be incorporated in the Help for upcoming releases of VPython 6. > > the website directs me to https://github.com/vpython/visual/ but this > repository has not been updated since August, and no other branches > exist. > > where is the development for VPython 6 happening? > > ...i would like to get a Linux build running for an in-house demo this > Thursday, so any notes appreciated. note: i don't need a full-blown > installable pip package or anything, just the code and any pertinent > info related to the build :) > > for what it's worth, this is fantastic work! i've been "patiently" > anticipating a Linux package, but i've no problem at all handling that > part myself (im on Arch anyway... i expect Ubuntu or something is the > focused target) > > thanks! > > -- > > C Anthony > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > MVPs and experts. ON SALE this month only -- learn more at: > http://p.sf.net/sfu/learnmore_123012_______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > ------------------------------------------------------------------------------ > Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS > and more. Get SQL Server skills now (including 2012) with LearnDevNow - > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only - learn more at: > http://p.sf.net/sfu/learnmore_122512_______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users ------------------------------------------------------------------------------ Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS and more. Get SQL Server skills now (including 2012) with LearnDevNow - 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only - learn more at: http://p.sf.net/sfu/learnmore_122512 _______________________________________________ Visualpython-users mailing list Vis...@li... https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Marc B. <mbe...@ar...> - 2013-01-15 11:30:56
|
Hi, I'm new to vPython but I'll be giving this a go. I've noticed that my vPython app runs much quicker on windows under the 64 python compared to 32 so I'm eager to get the mac 64 bit version to work. Thanks for the amazing bit of programming. Marc Beaumont Senior IT Support Engineer Aircraft Research Association Tel: (01234) 324683 mbe...@ar... -----Original Message----- From: Daniel Farrell [mailto:boy...@gm...] Sent: 15 January 2013 04:10 To: Steve Spicklemire Cc: vpusers users Subject: Re: [Visualpython-users] Experimental Mac Installer on vpython.org, (and linux setup.py ready for testing) Hello Steve, Fantastic news, I will try it today... Best wishes, Dan On 15 Jan 2013, at 09:26, Steve Spicklemire <st...@sp...> wrote: > Hi VPython Mac/Linux Users, > > First mac folks... > > If you're a brave soul, interested in testing the first experimental release of Visual Python for Macintosh you can get it here: > > <http://vpython.org/contents/download_mac.html> > > (See the paragraph: Experimental VPython based on the cross-platform > library wxPython. First, download and install Python-2.7.3, then > install Experimental VPython 6.01. See the documentation included with > this VPython for a change in VPython: you must include a rate > statement in animation loops.) > > Links are there for both the Python and VPython downloads. > > Here are more details, slightly modified from Bruce's Windows announcement of 12-26-2012: > > On the Macintosh download page at vpython.org is an experimental VPython based on the cross-platform library wxPython. It requires the python.org universal (32 and 64-bit version of Python 2.7, link provided). > > Like the windows version, this experimental version differs from the older VPython (5.74 and before) by eliminating nearly all platform-dependent code and by eliminating the threading associated with rendering. This makes it possible for the first time to run on 64-bit Python on the Mac and will simplify maintenance and further development of VPython. It is also likely to make possible adding standard buttons, menus, etc. to a window that contains a VPython scene. > > The new version makes one essential change to the syntax of VPython programs. Now, an animation loop MUST contain a rate statement, which limits the number of loop iterations per second as before but also when appropriate (about 30 times per second) updates the 3D scene and handles mouse and keyboard events. Without a rate statement, the scene will not be updated until and unless the loop is completed. > > The heart of the user-interface code (creating windows and handling events) is the file site-packages/visual_common/create_display.py. It is imported by visual/__init__.py and by /vis/__init__.py; the difference is that for convenience visual imports math and numpy, whereas vis doesn't. > > Please report issues to the Github repository https://github.com/BruceSherwood/vpython-wx, or to the VPython mailing list. > > You can stop reading now, unless you are an expert mac user, or a > linux user and want to really push the envelope. ;-) > > ----------------------- > > Building vpython on linux and the mac is now easier than ever! You can find the instructions in the INSTALL.txt of the source distribution from github. Basically, once you have dependencies installed, it's just "python setup.py build" and "sudo python setup.py install". For the mac you'll need Xcode.app, and source downloads of wxPython-2.9.4, boost, and so on. For linux you can use apt-get (or equivalent) to install dependencies. > > Please let us know if you choose to build it yourself and you have success, and especially if you have failure. We want to make this as foolproof as we can. > > Finally, for mac experts: if you already have numpy/polygon/ttfquery installed you should "customize" your install and uncheck those items. > > If you already have wxPython installed, make sure it's the cocoa universal version 2.9.4 and then "customize" and uncheck it as well. > > Enjoy! > -steve > > > ---------------------------------------------------------------------- > -------- Master SQL Server Development, Administration, T-SQL, SSAS, > SSIS, SSRS and more. Get SQL Server skills now (including 2012) with > LearnDevNow - > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only - learn more at: > http://p.sf.net/sfu/learnmore_122512 > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users ---------------------------------------------------------------------------- -- Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS and more. Get SQL Server skills now (including 2012) with LearnDevNow - 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only - learn more at: http://p.sf.net/sfu/learnmore_122512 _______________________________________________ Visualpython-users mailing list Vis...@li... https://lists.sourceforge.net/lists/listinfo/visualpython-users ********************************************************************** Please consider the environment. Only print this email if absolutely necessary. This email contains information that is private and confidential and is intended only for the addressee. If you are not the intended recipient please delete it and notify us immediately by e-mailing the sender. Note: All email sent to or from this address may be accessed by someone other than the recipient, for system management and security reasons. Aircraft Research Association Ltd. Registered in England, Registration No 503668 Registered Office: Manton Lane, Bedford MK41 7PF England VAT No GB 196351245 ********************************************************************** |
From: Daniel F. <boy...@gm...> - 2013-01-15 04:10:02
|
Hello Steve, Fantastic news, I will try it today... Best wishes, Dan On 15 Jan 2013, at 09:26, Steve Spicklemire <st...@sp...> wrote: > Hi VPython Mac/Linux Users, > > First mac folks... > > If you're a brave soul, interested in testing the first experimental release of Visual Python for Macintosh you can get it here: > > <http://vpython.org/contents/download_mac.html> > > (See the paragraph: Experimental VPython based on the cross-platform library wxPython. First, download and install Python-2.7.3, then install Experimental VPython 6.01. See the documentation included with this VPython for a change in VPython: you must include a rate statement in animation loops.) > > Links are there for both the Python and VPython downloads. > > Here are more details, slightly modified from Bruce's Windows announcement of 12-26-2012: > > On the Macintosh download page at vpython.org is an experimental VPython based on the cross-platform library wxPython. It requires the python.org universal (32 and 64-bit version of Python 2.7, link provided). > > Like the windows version, this experimental version differs from the older VPython (5.74 and before) by eliminating nearly all platform-dependent code and by eliminating the threading associated with rendering. This makes it possible for the first time to run on 64-bit Python on the Mac and will simplify maintenance and further development of VPython. It is also likely to make possible adding standard buttons, menus, etc. to a window that contains a VPython scene. > > The new version makes one essential change to the syntax of VPython programs. Now, an animation loop MUST contain a rate statement, which limits the number of loop iterations per second as before but also when appropriate (about 30 times per second) updates the 3D scene and handles mouse and keyboard events. Without a rate statement, the scene will not be updated until and unless the loop is completed. > > The heart of the user-interface code (creating windows and handling events) is the file site-packages/visual_common/create_display.py. It is imported by visual/__init__.py and by /vis/__init__.py; the difference is that for convenience visual imports math and numpy, whereas vis doesn't. > > Please report issues to the Github repository https://github.com/BruceSherwood/vpython-wx, or to the VPython mailing list. > > You can stop reading now, unless you are an expert mac user, or a linux user and want to really push the envelope. ;-) > > ----------------------- > > Building vpython on linux and the mac is now easier than ever! You can find the instructions in the INSTALL.txt of the source distribution from github. Basically, once you have dependencies installed, it's just "python setup.py build" and "sudo python setup.py install". For the mac you'll need Xcode.app, and source downloads of wxPython-2.9.4, boost, and so on. For linux you can use apt-get (or equivalent) to install dependencies. > > Please let us know if you choose to build it yourself and you have success, and especially if you have failure. We want to make this as foolproof as we can. > > Finally, for mac experts: if you already have numpy/polygon/ttfquery installed you should "customize" your install and uncheck those items. > > If you already have wxPython installed, make sure it's the cocoa universal version 2.9.4 and then "customize" and uncheck it as well. > > Enjoy! > -steve > > > ------------------------------------------------------------------------------ > Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS > and more. Get SQL Server skills now (including 2012) with LearnDevNow - > 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. > SALE $99.99 this month only - learn more at: > http://p.sf.net/sfu/learnmore_122512 > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users |