https://github.com/piyoki/jetson_lab
https://github.com/piyoki/jetson_lab
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/piyoki/jetson_lab
- Owner: piyoki
- Created: 2020-05-29T07:56:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-07T06:40:39.000Z (over 4 years ago)
- Last Synced: 2025-06-27T22:04:02.379Z (7 days ago)
- Language: Dockerfile
- Size: 2.09 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JupyterLab on Jetson
[](https://opensource.org/licenses/MIT)
![]()
*** Copy Right 2020 Kevin Yu. All rights reserved.
*** Author: Kevin Yu
*** Update Time: 2021/01/07
*** Contact: [email protected] | www.hikariai.net
This repo aims to give you clear instructions on how to install **Jupyter Software** (Jupyter Lab, Jupyter Notebook) on Jetson devices. It should work on any x86 PCs or Mac as well.
The guide below is a demonstration of the deployment, and the usage **JupyterLab** on Jetson. However, The usage features of Jupyter Notebook are very close to those of JupyterLab, so you should be able to apply the same techniques in Jupyter Notebook as well.

## Docs
- [Wiki (EN)](https://github.com/yqlbu/jetson_lab/blob/master/Wiki.md)
## Quick Install
#### Install with Script
```bash
curl -fsSL https://raw.githubusercontent.com/yqlbu/jetson_lab/master/install.sh | bash -
```#### Install with Docker
```bash
$ docker run --name jupyterlab -d \
-e TZ=Asia/Shanghai \
-p 8888:8888 \
-v /appdata/jupyterlab:/opt/app/data \
hikariai/jupyterlab:latest
```#### Run the app
```bash
$ jupyter lab --ip=* --port=8888 --no-browser --notebook-dir=/opt/app/data \
--allow-root --NotebookApp.token='' --NotebookApp.password='' \
--LabApp.terminado_settings='{"shell_command": ["/bin/bash"]}'
```