Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dyslab/jnb-sample
Jupyter Notebook Learning Samples. ๐
https://github.com/dyslab/jnb-sample
jupyter-notebook python3 samples
Last synced: 24 days ago
JSON representation
Jupyter Notebook Learning Samples. ๐
- Host: GitHub
- URL: https://github.com/dyslab/jnb-sample
- Owner: dyslab
- License: mit
- Created: 2019-05-27T18:24:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-15T03:45:47.000Z (27 days ago)
- Last Synced: 2024-12-15T04:18:27.461Z (27 days ago)
- Topics: jupyter-notebook, python3, samples
- Language: Jupyter Notebook
- Homepage: https://nbviewer.jupyter.org/github/dyslab/jnb-sample/tree/master/
- Size: 29.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jnb-sample: A Miscellany Of Jupyter Notebook Learning ๐
[![Jupyter notebook v7](./assets/jupyter-notebook-v7.svg)](https://jupyter.org/) ย ย [![My Stackshare](./assets/stackshare-dyslab.svg)](https://stackshare.io/dyslab) ย ย [![.github/workflows/fetch-bing-wallpaper.yml](https://github.com/dyslab/jnb-sample/actions/workflows/fetch-bing-wallpaper.yml/badge.svg)](https://github.com/dyslab/jnb-sample/actions/workflows/fetch-bing-wallpaper.yml)
## Prerequisites
1. Python venv environment (v3.7 or above)
2. Jupyter Notebook v7
## Installation(venv mode)
```bash
# Create virtual environment
python3 -m venv venv# Activate venv mode in current folder
. venv/bin/activate # On Linux / macOS
# .\venv\Scripts\Activate.ps1 # On Windows (Powershell)
# .\venv\Scripts\activate.bat # On Windows (cmd)# Install packages for this project in venv mode
pip install -r requirements.txt# BTW: Exporting `requirements.txt` by CLI `pip freeze > requirements.txt`
```## Launch jupyter notebook with venv mode
```bash
# Launch notebook with venv mode in current (working) folder.
jupyter notebook # Command prompt added a prefix '(venv)'
```***Project history***
ยท Last modified date: 15 Dec 2024
ยท Project creation date: 28 May 2019