https://github.com/crabnebula-dev/jupyterlab-tauri
https://github.com/crabnebula-dev/jupyterlab-tauri
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/crabnebula-dev/jupyterlab-tauri
- Owner: crabnebula-dev
- License: mit
- Created: 2023-01-24T15:32:24.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2024-10-17T00:01:32.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T20:51:15.437Z (over 1 year ago)
- Language: Rust
- Size: 2.04 MB
- Stars: 1
- Watchers: 0
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JupyterLab + Tauri
A desktop application for [JupyterLab](https://github.com/jupyterlab/jupyterlab), based on [Tauri](https://tauri.app/).
The application installs JupyterLab on its own Python environment. The env path is:
- `$HOME/Library/org.jupyter.lab/jupyterServer` on macOS.
- `$XDG_DATA_HOME/org.jupyter.lab/jupyterServer` or `$HOME/.local/share/org.jupyter.lab/jupyterServer` or `$HOME/jupyterServer` on Linux.
- `{FOLDERID_LocalAppData}/org.jupyter.lab/jupyterServer` or `{FOLDERID_Profile}/jupyterServer` on Windows.
## Build dependencies
- [conda](https://docs.conda.io)
Install version 22.11.1 from the [archive](https://repo.anaconda.com/miniconda/).
- [(conda) Constructor](https://github.com/conda/constructor) to bundle JupyterLab Desktop Server into the stand-alone application. You can install Constructor using:
```bash
conda install -c conda-forge constructor
```
Windows 10 requirement
For some reason on Windows 10 the pillow package crashes on a missing _imagine DLL. So you will have to change the pillow version manually with the following command:
```bash
conda install -c conda-forge pillow=9.0.0
```
- NodeJS
You can install from https://nodejs.org/en/download/ or run:
```bash
conda install -c conda-forge nodejs
```
- Yarn
Install using
```bash
npm install --global yarn
```