Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created March 3, 2020 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/4ddd024ff3e762356537d944226dc117 to your computer and use it in GitHub Desktop.
Save r-ryantm/4ddd024ff3e762356537d944226dc117 to your computer and use it in GitHub Desktop.
/nix/store/ap9054q0s719q3hdnf1c3iw52nj4g3ws-python3.7-jupyterlab-2.0.0
├── bin
│   ├── jlpm
│   ├── jupyter-lab
│   ├── jupyter-labextension
│   └── jupyter-labhub
├── etc
│   └── jupyter
│   └── jupyter_notebook_config.d
│   └── jupyterlab.json
├── lib
│   └── python3.7
│   └── site-packages
│   ├── jupyterlab
│   │   ├── browser_check.py
│   │   ├── chrome-test.js
│   │   ├── commands.py
│   │   ├── coreconfig.py
│   │   ├── debuglog.py
│   │   ├── extension.py
│   │   ├── handlers
│   │   │   ├── build_handler.py
│   │   │   ├── error_handler.py
│   │   │   ├── extension_manager_handler.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── build_handler.cpython-37.pyc
│   │   │   ├── error_handler.cpython-37.pyc
│   │   │   ├── extension_manager_handler.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   ├── jlpmapp.py
│   │   ├── labapp.py
│   │   ├── labextensions.py
│   │   ├── __main__.py
│   │   ├── node-version-check.js
│   │   ├── __pycache__
│   │   │   ├── browser_check.cpython-37.pyc
│   │   │   ├── commands.cpython-37.pyc
│   │   │   ├── coreconfig.cpython-37.pyc
│   │   │   ├── debuglog.cpython-37.pyc
│   │   │   ├── extension.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── jlpmapp.cpython-37.pyc
│   │   │   ├── labapp.cpython-37.pyc
│   │   │   ├── labextensions.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── semver.cpython-37.pyc
│   │   │   └── _version.cpython-37.pyc
│   │   ├── schemas
│   │   │   └── @jupyterlab
│   │   │   ├── application-extension
│   │   │   │   ├── main.json
│   │   │   │   ├── package.json.orig
│   │   │   │   └── sidebar.json
│   │   │   ├── apputils-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   ├── palette.json
│   │   │   │   ├── print.json
│   │   │   │   └── themes.json
│   │   │   ├── codemirror-extension
│   │   │   │   ├── commands.json
│   │   │   │   └── package.json.orig
│   │   │   ├── completer-extension
│   │   │   │   ├── consoles.json
│   │   │   │   ├── files.json
│   │   │   │   ├── notebooks.json
│   │   │   │   └── package.json.orig
│   │   │   ├── console-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── tracker.json
│   │   │   ├── docmanager-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── documentsearch-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── extensionmanager-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── filebrowser-extension
│   │   │   │   ├── browser.json
│   │   │   │   └── package.json.orig
│   │   │   ├── fileeditor-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── imageviewer-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── inspector-extension
│   │   │   │   ├── inspector.json
│   │   │   │   └── package.json.orig
│   │   │   ├── launcher-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── logconsole-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── mainmenu-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── markdownviewer-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── notebook-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── tracker.json
│   │   │   ├── settingeditor-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── shortcuts-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── shortcuts.json
│   │   │   ├── statusbar-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── terminal-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   └── tooltip-extension
│   │   │   ├── consoles.json
│   │   │   ├── files.json
│   │   │   ├── notebooks.json
│   │   │   └── package.json.orig
│   │   ├── semver.py
│   │   ├── staging
│   │   │   ├── index.js
│   │   │   ├── package.json
│   │   │   ├── templates
│   │   │   │   ├── 403.html
│   │   │   │   ├── error.html
│   │   │   │   ├── partial.html
│   │   │   │   └── template.html
│   │   │   ├── webpack.config.js
│   │   │   ├── webpack.prod.config.js
│   │   │   ├── webpack.prod.minimize.config.js
│   │   │   ├── webpack.prod.release.config.js
│   │   │   ├── yarn.js
│   │   │   └── yarn.lock
│   │   ├── static
│   │   │   ├── 067595ad77ecc0db9c81c8905a7eef32.woff2
│   │   │   ├── 0724bb8b89ab6b8b9b7df917b17be0b7.svg
│   │   │   ├── 2.2d27e57b62c844a7561d.js
│   │   │   ├── 3351f435b3c9037fd88aeb04dc1e43bc.eot
│   │   │   ├── 3.554190027eb5d6bff7a0.js
│   │   │   ├── 3.554190027eb5d6bff7a0.js.LICENSE.txt
│   │   │   ├── 4165c2688309cbfb1b877caf8f75afb5.woff2
│   │   │   ├── 4.e5a415604d0f540d20ce.js
│   │   │   ├── 55eb2a60e8181f0e68b558c991973bf0.woff2
│   │   │   ├── 57dcda6f368ea90179f75cbdae96c263.eot
│   │   │   ├── 5.8084752454d8513f71ec.js
│   │   │   ├── 5d0861781aeef6c82fda3a3076954a1b.svg
│   │   │   ├── 6.5c3060bb9293dee48809.js
│   │   │   ├── 73cf49a2232c06c920b7a34e36bfb58c.woff
│   │   │   ├── 75f38a159982b6bd1704891332d95fa7.ttf
│   │   │   ├── 89e02bae13c9131c7468b1e729339ac1.eot
│   │   │   ├── 9d67fa1429375bd2a899a17eb77d0342.svg
│   │   │   ├── 9ec698d1a597bff5df337094b71ddaaf.ttf
│   │   │   ├── a0e3ac82940c1998c5977fd4bc1f5ef6.ttf
│   │   │   ├── b564da88bbf0c4aa446fa19653713cd1.woff
│   │   │   ├── cdfec5cf5e9840889790bcf2c4042583.woff
│   │   │   ├── imports.css
│   │   │   ├── index.html
│   │   │   ├── index.out.js
│   │   │   ├── main.ae5d97e7054898fe010f.js
│   │   │   ├── package.json
│   │   │   ├── vendors~main.842eeaf450a183e1e755.js
│   │   │   └── vendors~main.842eeaf450a183e1e755.js.LICENSE.txt
│   │   ├── tests
│   │   │   ├── echo_kernel.py
│   │   │   ├── __init__.py
│   │   │   ├── mock_packages
│   │   │   │   ├── extension
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── package.json
│   │   │   │   ├── incompat
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── package.json
│   │   │   │   ├── mimeextension
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── package.json
│   │   │   │   └── package
│   │   │   │   ├── index.js
│   │   │   │   └── package.json
│   │   │   ├── __pycache__
│   │   │   │   ├── echo_kernel.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_app.cpython-37.pyc
│   │   │   │   ├── test_build_api.cpython-37.pyc
│   │   │   │   ├── test_jupyterlab.cpython-37.pyc
│   │   │   │   └── test_registry.cpython-37.pyc
│   │   │   ├── test_app.py
│   │   │   ├── test_build_api.py
│   │   │   ├── test_jupyterlab.py
│   │   │   └── test_registry.py
│   │   ├── themes
│   │   │   └── @jupyterlab
│   │   │   ├── theme-dark-extension
│   │   │   │   ├── index.css
│   │   │   │   └── index.js
│   │   │   └── theme-light-extension
│   │   │   ├── index.css
│   │   │   └── index.js
│   │   └── _version.py
│   └── jupyterlab-2.0.0.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
└── jupyter
└── lab
├── schemas
│   └── @jupyterlab
│   ├── application-extension
│   │   ├── main.json
│   │   ├── package.json.orig
│   │   └── sidebar.json
│   ├── apputils-extension
│   │   ├── package.json.orig
│   │   ├── palette.json
│   │   ├── print.json
│   │   └── themes.json
│   ├── codemirror-extension
│   │   ├── commands.json
│   │   └── package.json.orig
│   ├── completer-extension
│   │   ├── consoles.json
│   │   ├── files.json
│   │   ├── notebooks.json
│   │   └── package.json.orig
│   ├── console-extension
│   │   ├── package.json.orig
│   │   └── tracker.json
│   ├── docmanager-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── documentsearch-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── extensionmanager-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── filebrowser-extension
│   │   ├── browser.json
│   │   └── package.json.orig
│   ├── fileeditor-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── imageviewer-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── inspector-extension
│   │   ├── inspector.json
│   │   └── package.json.orig
│   ├── launcher-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── logconsole-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── mainmenu-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── markdownviewer-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── notebook-extension
│   │   ├── package.json.orig
│   │   └── tracker.json
│   ├── settingeditor-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── shortcuts-extension
│   │   ├── package.json.orig
│   │   └── shortcuts.json
│   ├── statusbar-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── terminal-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   └── tooltip-extension
│   ├── consoles.json
│   ├── files.json
│   ├── notebooks.json
│   └── package.json.orig
├── static
│   ├── 067595ad77ecc0db9c81c8905a7eef32.woff2
│   ├── 0724bb8b89ab6b8b9b7df917b17be0b7.svg
│   ├── 2.2d27e57b62c844a7561d.js
│   ├── 3351f435b3c9037fd88aeb04dc1e43bc.eot
│   ├── 3.554190027eb5d6bff7a0.js
│   ├── 3.554190027eb5d6bff7a0.js.LICENSE.txt
│   ├── 4165c2688309cbfb1b877caf8f75afb5.woff2
│   ├── 4.e5a415604d0f540d20ce.js
│   ├── 55eb2a60e8181f0e68b558c991973bf0.woff2
│   ├── 57dcda6f368ea90179f75cbdae96c263.eot
│   ├── 5.8084752454d8513f71ec.js
│   ├── 5d0861781aeef6c82fda3a3076954a1b.svg
│   ├── 6.5c3060bb9293dee48809.js
│   ├── 73cf49a2232c06c920b7a34e36bfb58c.woff
│   ├── 75f38a159982b6bd1704891332d95fa7.ttf
│   ├── 89e02bae13c9131c7468b1e729339ac1.eot
│   ├── 9d67fa1429375bd2a899a17eb77d0342.svg
│   ├── 9ec698d1a597bff5df337094b71ddaaf.ttf
│   ├── a0e3ac82940c1998c5977fd4bc1f5ef6.ttf
│   ├── b564da88bbf0c4aa446fa19653713cd1.woff
│   ├── cdfec5cf5e9840889790bcf2c4042583.woff
│   ├── imports.css
│   ├── index.html
│   ├── index.out.js
│   ├── main.ae5d97e7054898fe010f.js
│   ├── package.json
│   ├── vendors~main.842eeaf450a183e1e755.js
│   └── vendors~main.842eeaf450a183e1e755.js.LICENSE.txt
└── themes
└── @jupyterlab
├── theme-dark-extension
│   ├── index.css
│   └── index.js
└── theme-light-extension
├── index.css
└── index.js
83 directories, 245 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment