Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/piyoki/jetson_lab
https://github.com/piyoki/jetson_lab
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/piyoki/jetson_lab
- Owner: piyoki
- Created: 2020-05-29T07:56:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-07T06:40:39.000Z (almost 4 years ago)
- Last Synced: 2024-10-14T07:36:25.993Z (3 months 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
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
![]()
![](https://img.shields.io/static/v1?label=Software&message=JupyterLab&color=red)*** 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.
![](https://github.com/yqlbu/jetson_lab/blob/master/demo_screenshots/thumbnail.png)
## 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"]}'
```