Installing python and requirements
sudo apt install python3 python3-venv python3-dev python3-pip build-essentialpython3 -m venv venvsource venv/bin/activatepip3 install -U pippip3 install -r requirements.txtpip3 install -r requirements-dev.txtInstall jupyter notebook
pip install jupyter notebook
pip3 install jupyterlabSend our created venv to Jupyter Notebook
pip install ipykernel
pip3 install -U ipykernelpython -m ipykernel install --user --name={venv_name}
python3 -m ipykernel install --user --name={name}Start Jupyter Notebook
jupyter notebookimport numpy as np
import open3d as o3d
import matplotlib
import matplotlib.pyplot as plt
color_raw = o3d.io.read_image("../data/ex1/image_rgb.jpg")
depth_raw = o3d.io.read_image("../data/ex1/image_depth.png")