32 lines
875 B
Python
32 lines
875 B
Python
# Crown Copyright (C) Dstl 2022. DEFCON 703. Shared in confidence.
|
|
import importlib.util
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
from primaite import NOTEBOOKS_DIR, getLogger
|
|
|
|
_LOGGER = getLogger(__name__)
|
|
|
|
|
|
def start_jupyter_session():
|
|
"""
|
|
Starts a new Jupyter notebook session in the app notebooks directory.
|
|
|
|
Currently only works on Windows OS.
|
|
|
|
.. todo:: Figure out how to get this working for Linux and MacOS too.
|
|
"""
|
|
if importlib.util.find_spec("jupyter") is not None:
|
|
jupyter_cmd = "python3 -m jupyter lab"
|
|
if sys.platform == "win32":
|
|
jupyter_cmd = "jupyter lab"
|
|
|
|
working_dir = os.getcwd()
|
|
os.chdir(NOTEBOOKS_DIR)
|
|
subprocess.Popen(jupyter_cmd)
|
|
os.chdir(working_dir)
|
|
else:
|
|
# Jupyter is not installed
|
|
_LOGGER.error("Cannot start jupyter lab as it is not installed")
|