You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File ~\anaconda3\Lib\site-packages\pydivide_init_.py:2
1 # from .mvn_kp_3d import mvn_kp_3d
----> 2 from .altplot import altplot
3 from .bin import bin
4 from .download_files import download_files
File ~\anaconda3\Lib\site-packages\pydivide\altplot.py:7
1 # Copyright 2017 Regents of the University of Colorado. All Rights Reserved.
2 # Released under the MIT license.
3 # This software was developed at the University of Colorado's Laboratory for Atmospheric and Space Physics.
4 # Verify current version before use at: https://github.com/MAVENSDC/Pydivide
6 from .utilities import get_inst_obs_labels, param_list, orbit_time, range_select
----> 7 import pytplot
8 import builtins
11 def altplot(kp, parameter=None, time=None, errors=None,
12 sameplot=True, list=False, title='Altitude Plot',
13 ylog=False, qt=True):
File ~\anaconda3\Lib\site-packages\pytplot_init_.py:7
1 # Copyright 2018 Regents of the University of Colorado. All Rights Reserved.
2 # Released under the MIT license.
3 # This software was developed at the University of Colorado's Laboratory for Atmospheric and Space Physics.
4 # Verify current version before use at: https://github.com/MAVENSDC/PyTplot
6 from _collections import OrderedDict
----> 7 from . import HTMLPlotter
8 import os
9 import sys
File ~\anaconda3\Lib\site-packages\pytplot\HTMLPlotter_init_.py:6
1 # Copyright 2018 Regents of the University of Colorado. All Rights Reserved.
2 # Released under the MIT license.
3 # This software was developed at the University of Colorado's Laboratory for Atmospheric and Space Physics.
4 # Verify current version before use at: https://github.com/MAVENSDC/PyTplot
----> 6 from .TVarFigure1D import TVarFigure1D
7 from .TVarFigureMap import TVarFigureMap
8 from .TVarFigureAlt import TVarFigureAlt
File ~\anaconda3\Lib\site-packages\pytplot\HTMLPlotter\TVarFigure1D.py:8
6 from future import division
7 import numpy as np
----> 8 from bokeh.plotting.figure import Figure
9 from bokeh.models import (ColumnDataSource, DatetimeAxis, HoverTool,
10 Range1d, Span, Title, Legend, BoxAnnotation)
11 from bokeh.models.glyphs import Line
ModuleNotFoundError: No module named 'bokeh.plotting.figure'
The text was updated successfully, but these errors were encountered:
After installing Pydivide and Bokeh while importing pydivide i am getting error, please provide action to resolve it
import pydivide
ModuleNotFoundError Traceback (most recent call last)
Cell In[11], line 1
----> 1 import pydivide
File ~\anaconda3\Lib\site-packages\pydivide_init_.py:2
1 # from .mvn_kp_3d import mvn_kp_3d
----> 2 from .altplot import altplot
3 from .bin import bin
4 from .download_files import download_files
File ~\anaconda3\Lib\site-packages\pydivide\altplot.py:7
1 # Copyright 2017 Regents of the University of Colorado. All Rights Reserved.
2 # Released under the MIT license.
3 # This software was developed at the University of Colorado's Laboratory for Atmospheric and Space Physics.
4 # Verify current version before use at: https://github.com/MAVENSDC/Pydivide
6 from .utilities import get_inst_obs_labels, param_list, orbit_time, range_select
----> 7 import pytplot
8 import builtins
11 def altplot(kp, parameter=None, time=None, errors=None,
12 sameplot=True, list=False, title='Altitude Plot',
13 ylog=False, qt=True):
File ~\anaconda3\Lib\site-packages\pytplot_init_.py:7
1 # Copyright 2018 Regents of the University of Colorado. All Rights Reserved.
2 # Released under the MIT license.
3 # This software was developed at the University of Colorado's Laboratory for Atmospheric and Space Physics.
4 # Verify current version before use at: https://github.com/MAVENSDC/PyTplot
6 from _collections import OrderedDict
----> 7 from . import HTMLPlotter
8 import os
9 import sys
File ~\anaconda3\Lib\site-packages\pytplot\HTMLPlotter_init_.py:6
1 # Copyright 2018 Regents of the University of Colorado. All Rights Reserved.
2 # Released under the MIT license.
3 # This software was developed at the University of Colorado's Laboratory for Atmospheric and Space Physics.
4 # Verify current version before use at: https://github.com/MAVENSDC/PyTplot
----> 6 from .TVarFigure1D import TVarFigure1D
7 from .TVarFigureMap import TVarFigureMap
8 from .TVarFigureAlt import TVarFigureAlt
File ~\anaconda3\Lib\site-packages\pytplot\HTMLPlotter\TVarFigure1D.py:8
6 from future import division
7 import numpy as np
----> 8 from bokeh.plotting.figure import Figure
9 from bokeh.models import (ColumnDataSource, DatetimeAxis, HoverTool,
10 Range1d, Span, Title, Legend, BoxAnnotation)
11 from bokeh.models.glyphs import Line
ModuleNotFoundError: No module named 'bokeh.plotting.figure'
The text was updated successfully, but these errors were encountered: