Hey all, is there any way to run a jupyter noteboo...
# general
r
Hey all, is there any way to run a jupyter notebook in a binary pex with correct dependencies ? something like:
Copy code
python_binary(
    name='jupyter-notebook',
    dependencies = [
        ':package1',
        ':package2',
        'packages-python/third_party:jupyter',
    ],
    source='notebook.py',
)