https://github.com/dyslab/jnb-sample
Jupyter Notebook Learning Samples. ๐
https://github.com/dyslab/jnb-sample
jupyter-notebook python3 samples
Last synced: about 2 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-29T03:41:34.000Z (about 2 months ago)
- Last Synced: 2025-03-29T04:26:07.020Z (about 2 months ago)
- Topics: jupyter-notebook, python3, samples
- Language: Jupyter Notebook
- Homepage: https://nbviewer.jupyter.org/github/dyslab/jnb-sample/tree/master/
- Size: 52.2 MB
- Stars: 1
- Watchers: 0
- 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 ๐
[](https://jupyter.org/) ย ย [](https://stackshare.io/dyslab) ย ย [](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