Re: What's next, continued

2020-03-25 Thread Thomas Passin
I installed Holoviews with pip on my Python 3.6 installation on a Linux Mint VM. After installation, the code above worked, and so did the bokeh example. Python was not upgraded to 3.8. So that must be an Anaconda thing. On Wednesday, March 25, 2020 at 6:26:31 PM UTC-4, Thomas Passin wrote:

Re: What's next, continued

2020-03-25 Thread Thomas Passin
On Wednesday, March 25, 2020 at 10:32:23 AM UTC-4, Edward K. Ream wrote: > > On Wed, Mar 25, 2020 at 9:29 AM Thomas Passin > wrote: > > > This is one of those "I dunno, it works on my machine" things. I do not > recall installing anything besides matplotlib - i mean, I just installed HV >

Re: What's next, continued

2020-03-25 Thread Thomas Passin
On Wednesday, March 25, 2020 at 4:56:34 PM UTC-4, Edward K. Ream wrote: > > On Wed, Mar 25, 2020 at 3:27 PM Thomas Passin > wrote: > > The exact packages that get installed probably doesn't matter. What *does* > matter is that python gets upgraded to 3.8 whenever I install holoviews, > and

Re: What's next, continued

2020-03-25 Thread Edward K. Ream
On Wed, Mar 25, 2020 at 3:27 PM Thomas Passin wrote: > OK, I set up a virtual environment, and installed packages in this order: matplotlib bokeh leo holoviews > The program worked as expected. I ended up completely reinstalling Anaconda. That cleared up some problems with weird

Re: 6.2 is code complete

2020-03-25 Thread Matt Wilkie
> > I'll release 6.2 final on Friday or Saturday. > Ok, I'll be watching for pip related stuff. -matt -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to

6.2 is code complete

2020-03-25 Thread Edward K. Ream
I'll release 6.2 final on Friday or Saturday. Edward -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to leo-editor+unsubscr...@googlegroups.com. To view this

Re: What's next, continued

2020-03-25 Thread Edward K. Ream
On Wed, Mar 25, 2020 at 9:29 AM Thomas Passin wrote: > This is one of those "I dunno, it works on my machine" things. I do not recall installing anything besides matplotlib - i mean, I just installed HV itself, and not any extension. I'll set up a virtual environment and see what happens.

Re: Crash in vr3

2020-03-25 Thread Thomas Passin
I get that too, sometimes, and I don't know why yet. On my system(s), VR3 keeps working even after that, though the same thing sometimes gets raised over and over, after it happens once. On my copy, I have changed the position of a try statement to catch this and at least be a little calmer

Re: What's next, continued

2020-03-25 Thread Thomas Passin
On Wednesday, March 25, 2020 at 7:49:47 AM UTC-4, Edward K. Ream wrote: > > But I'm still having troubles. Importing matplotlib directly does work, > but the last line here throws an exception: > > import holoviews as hv > import holoviews.util > hv.extension('matplotlib') > > Here is the

Re: Crash in vr3

2020-03-25 Thread Edward K. Ream
On Wed, Mar 25, 2020 at 9:34 AM Thomas Passin wrote: > I get that too, sometimes, and I don't know why yet. On my system(s), VR3 > keeps working even after that, though the same thing sometimes gets raised > over and over, after it happens once. > > On my copy, I have changed the position of a

Re: What's next, continued

2020-03-25 Thread Thomas Passin
That's funny. I edited my post twice, but it seems that the original unedited version hung around. I don't know how that happened, but I'm sorry for the confusion. On Wednesday, March 25, 2020 at 7:49:47 AM UTC-4, Edward K. Ream wrote: > > On Wednesday, March 25, 2020 at 6:33:23 AM UTC-5,

Re: What's next, continued

2020-03-25 Thread Edward K. Ream
On Tue, Mar 24, 2020 at 6:20 PM Thomas Passin wrote: > ...using Holoviews with the matplotlib back end, it is easy to save a plot and show in in a Leo node. Using the Bokeh backend, or using Bokeh itself, it's nearly impossible. > The attached png file is a screen shot showing my little

Crash in vr3

2020-03-25 Thread Edward K. Ream
After starting vr3, I get the following when changing nodes, even after vr3-hide: RuntimeError: wrapped C/C++ object of type QToolBar has been deleted Traceback (most recent call last): File "c:\leo.repo\leo-editor\leo\core\leoPlugins.py", line 322, in callTagHandler result =

Re: What's next, continued

2020-03-25 Thread Edward K. Ream
On Tuesday, March 24, 2020 at 6:20:15 PM UTC-5, Thomas Passin wrote: It turns out that using Holoviews with the matplotlib back end, it is easy > to save a plot image and show it in a Leo Restructured Text (@rst) node. > Using the Bokeh backend, or using Bokeh itself, you can actually embed

Re: What's next, continued

2020-03-25 Thread Edward K. Ream
On Wednesday, March 25, 2020 at 6:33:23 AM UTC-5, Edward K. Ream wrote: I haven't yet figure out how to use holoviews. I copied the code shown, > namely: > > import holoviews as hv > import holviews.util > hv.extension('matplotlib') > xs = range(-10, 11) > ys = [100-z**2 for z in xs] > > curve =