Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        2年前关闭。
                                                                                            
                
        
我得到了一些使用python和bokeh进行应用程序Web映射的示例,并且previewsavetoolBoxSelectionOverlay出现错误。它说不能导入库。我使用bokeh版本0.12.6。谁能帮我bokeh 0.12.6版本中用于PreviewSaveToolBoxSelectionOverlay的新工具是什么?

这是代码:

from bokeh.models import (
    GMapPlot, Range1d, ColumnDataSource, LinearAxis,
    HoverTool, PanTool, WheelZoomTool, BoxSelectTool, ResetTool,
    PreviewSaveTool, BoxSelectionOverlay,
    GMapOptions, NumeralTickFormatter, PrintfTickFormatter)

最佳答案

从BoxSelectionOverlay和PreviewSavetool均已贬值。 BoxSelectionOverlay的最新版本为0.10.0,而PreviewSavetool的最新版本为0.11.0

您可以选择恢复到以前的版本,也可以只使用新模型。 PreviewSavetool现在为SaveTool,并且BoxSelectionOverlay的功能已集成在BoxSelectTool中。

关于python - PreviewSavetool和BoxSelectionOverlay的bokeh工具导入错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44767793/

10-12 21:54