Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 331 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 331 Bytes

Image Processing 101

Initialization

// Create Python Pip VirtualEnv
$ python3 -m venv venv/
$ source venv/bin/activate
$ pip install -r requirements.txt

// Start Jupyter-Lab
$ jupyter-lab --port=8888 --no-browser
// or Jupyter-Notebook
$ jupyter notebook --port=8888 --no-browser