stickyland
Break the linear presentation of Jupyter Notebooks with sticky cells!
File Explorer
Download Latest Version (.zip)- build.yml
- check-release.yml
- example-adult.ipynb
- example-ml.ipynb
- __init__.py
- _version.py
- button.ts
- code.ts
- content.ts
- dropzone.ts
- floating.ts
- icons.ts
- index.ts
- markdown.ts
- stickyland.ts
- svg.d.ts
- tab.ts
- icon-add.svg
- icon-chevron.svg
- icon-close2.svg
- icon-collapse.svg
- icon-drag.svg
- icon-expand.svg
- icon-land-.svg
- icon-land.svg
- icon-launch.svg
- icon-tabclose.svg
- base.css
- code.css
- dropzone.css
- floating.css
- index.css
- index.js
- markdown.css
- toolbar.css
- .eslintignore
- .eslintrc.js
- .gitattributes
- .gitignore
- .prettierignore
- .prettierrc
- .yarnrc.yml
- CHANGELOG.md
- install.json
- LICENSE
- MANIFEST.in
- package.json
- pyproject.toml
- README.md
- RELEASE.md
- setup.py
- tsconfig.json
๐ Installation Guide
git clone https://github.com/xiaohk/stickyland
Downloads the entire project code from GitHub to your computer.
cd stickyland
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install stickyland
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Node.js
Easynpm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
4. Python
Easypip install stickyland
Installs the package published on PyPI directly โ no need to clone the source.
pip install -e .
Installs the Python libraries listed in requirements.txt (or similar).
jupyter labextension develop . --overwrite
Type this command into your terminal and run it.
jupyter lab
Launches Jupyter in your browser so you can open and run the notebook (.ipynb) files.
jupyter lab build --minimize=False
Launches Jupyter in your browser so you can open and run the notebook (.ipynb) files.
Pulled directly from this repo's README.
