INNER CODE UNIT · Python
warn_on_incompatible
buckaroo-data/buckaroo · buckaroo/__init__.py:31
def warn_on_incompatible():
if not is_notebook_compatible():
import notebook
print("Buckaroo is compatible with jupyter notebook > 6, or jupyterlab >3.6.0")
print("You seem to be executing this in jupyter notebook version %r" % str(notebook.__version__))
print("You can upgrade to notebook 7 by running 'pip install --upgrade notebook'")
print("Or you can try running jupyter lab with 'jupyter lab'")
def debug_packages():
print("Selected Jupyter core packages...")
jupyter_env = determine_jupter_env()
print("executing in %s " % jupyter_env)
packages = [
"buckaroo",
"jupyterlab",
"notebook",